summaryrefslogtreecommitdiffstats
path: root/ue3/mycpu/test/test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ue3/mycpu/test/test.sh')
-rwxr-xr-xue3/mycpu/test/test.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/ue3/mycpu/test/test.sh b/ue3/mycpu/test/test.sh
index ad2ae4d..ff1076c 100755
--- a/ue3/mycpu/test/test.sh
+++ b/ue3/mycpu/test/test.sh
@@ -32,9 +32,11 @@ do
32 if [ "$md5_1" != "$md5_2" ] 32 if [ "$md5_1" != "$md5_2" ]
33 then 33 then
34 echo " ERROR: output and $reffile differ" 34 echo " ERROR: output and $reffile differ"
35 diff -Nau $reffile $tmpfile 35 diff -Naur "$reffile" "$tmpfile"
36 rm -rf "$tmpfile"
36 exit 1 37 exit 1
37 else 38 else
38 echo " SUCCESS" 39 echo " SUCCESS"
39 fi 40 fi
41 rm -rf "$tmpfile"
40done 42done