From 12da5de1cc507bcc555b349386d61fd56a783d7f Mon Sep 17 00:00:00 2001 From: arno Date: Mon, 29 May 2000 19:41:16 +0000 Subject: [PATCH] * config.sh: Swapped reference output and test output on diff. --- tests/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/config.sh b/tests/config.sh index ea8e5d0b6..deedaf3fd 100644 --- a/tests/config.sh +++ b/tests/config.sh @@ -5,7 +5,7 @@ DIFFPIPE="Analysis|CPU|memory|Date|Note" function spicetest () { $NGSPICE < $srcdir/$1.cir 2>&1 | egrep -v $DIFFPIPE > $1.test - if diff -u $1.test $srcdir/$1.out; then + if diff -u $srcdir/$1.out $1.test; then rm $1.test exit 0 fi