X-Git-Url: https://jxself.org/git/?p=skeinsum.git;a=blobdiff_plain;f=testing%2FRun_tests;h=eedb8304343d45097df802666fd3ccb97fec09f2;hp=5fd4b7fdbd696282c3ce538430f8a7ec9d9c3684;hb=9342f28c12e2bb962296f53e2bd4331fb55ce002;hpb=8bc5acdf01f1636c86626bdd2a9c43d2ab266ecc 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