blob: 4848a5349eb28f1a9521599d90bef3d0526f0ccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
# Find a single nonconforming test.
# First command line parameter is the length of test in bytes, default is 10.
path=`dirname $(which $0)`
trap 'echo; rm -f $path/test.{in,out,ref} &> /dev/null ; exit' INT
while ! test "`$path/dotest $1`"; do echo -n .; done
shift
cat $path/test.in | $path/test -clean $@
|