|
|
1.1 ! moko 1: #!/bin/sh ! 2: ! 3: rm -f tests.log ! 4: ! 5: for f in ???.txt ! 6: do ! 7: echo "running test $f" | tee -a tests.log ! 8: cat $f |netcat localhost 8100 >>tests.log ! 9: echo "\n=============" >>tests.log ! 10: ! 11: done ! 12: ! 13: diff -u ok.log tests.log