* config.sh: Swapped reference output and test output on diff.

This commit is contained in:
arno 2000-05-29 19:41:16 +00:00
parent d6cfb4b626
commit 12da5de1cc
1 changed files with 1 additions and 1 deletions

View File

@ -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