Round out the test suite
[skeinsum.git] / testing / Run_tests
index 5fd4b7fdbd696282c3ce538430f8a7ec9d9c3684..eedb8304343d45097df802666fd3ccb97fec09f2 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2015 Jason Self <j@jxself.org>
+# Copyright (C) 2015 2019 Jason Self <j@jxself.org>
 #
 # Copying and distribution of this file, with or without modification,
 # are permitted in any medium without royalty provided the copyright
@@ -15,7 +15,7 @@ for f in *.command; do
     t="$n.$(date +%Y-%m-%d-%H%M%S)"
     test -s "$r" || { echo "WARNING: missing $r"; continue; }
     sh "$f" > $t 2>&1
-    diff -U0 "$r" "$t" && { rm "$t"; continue; }
+    diff -U0 "$r" "$t" && { rm "$t"; echo "$n completed successfully." ; continue; }
     echo "ERROR: $n failed"
     exit 1
 done