mirror of
https://github.com/jezhiggins/arabica
synced 2024-12-27 21:58:30 +01:00
13 lines
199 B
Bash
Executable file
13 lines
199 B
Bash
Executable file
#!/bin/sh
|
|
|
|
./xslt_test -table > test-run.csv
|
|
MISMATCH=`diff test.csv test-run.csv | wc -l `
|
|
|
|
if [ 0 -eq $MISMATCH ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
echo "TEST OUTPUT HAS CHANGED"
|
|
diff test.csv test-run.csv
|
|
exit 1
|