X-Git-Url: https://jxself.org/git/?p=skeinsum.git;a=blobdiff_plain;f=testing%2FRun_tests;h=eedb8304343d45097df802666fd3ccb97fec09f2;hp=5fd4b7fdbd696282c3ce538430f8a7ec9d9c3684;hb=7d6971a4c7d1abea33a313128841c404112a1cdd;hpb=dc08fdc15f71ba1dd1d360bb773f17fcd8480bc2 diff --git a/testing/Run_tests b/testing/Run_tests index 5fd4b7f..eedb830 100755 --- a/testing/Run_tests +++ b/testing/Run_tests @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2015 Jason Self +# Copyright (C) 2015 2019 Jason Self # # 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