
Former-commit-id: 93fac7a70052d06c2a12bf8af59820c653edd31b Former-commit-id: 0869fdad0f550941a0f78f1e4c57f4fcdb3f6076
19 lines
294 B
Bash
Executable File
19 lines
294 B
Bash
Executable File
#!/bin/csh -f
|
||
|
||
echo "+ [testing Normalize]"
|
||
|
||
../bin/go_normalize.sh test.fst > test.bak
|
||
|
||
diff -q test.bak test.ref >& /dev/null
|
||
|
||
set stat = $status
|
||
|
||
if ($stat == 0) then
|
||
echo '+[0;32m Normalize test Ok[m'
|
||
\rm -r test.bak
|
||
else
|
||
echo '+[0;31m Normalize test Failure[m'
|
||
endif
|
||
|
||
exit $stat
|