js8call/.svn/pristine/ae/ae6b7e906078a51acb3a96c3730eacdde5280542.svn-base

13 lines
353 B
Plaintext
Raw Normal View History

2018-02-08 21:28:33 -05:00
#!/bin/sh
# Run all the examples, and check the output against the corresponding -out
# file. Note that slight differences are possible when the examples are
# run on different machines, due to slightly different round-off errors.
for e in `ls ex-* | grep -v "\\." | grep -v .-out`
do
echo Running $e:
$e 2>&1 | diff ${e}-out -
echo " "
done