Currently, linux and MSVC are producing the same results on this test

problem. I changed runtest to substitute the right machine dependent
blessed file.
This commit is contained in:
Harry Moffat
2004-08-27 20:21:48 +00:00
parent 6b052f4d2e
commit a2f06e41ce

View File

@@ -49,9 +49,17 @@ fi
#
/bin/cp flame1_blessed.csv flame1_blessed_tmp.csv
machType=`../../bin/get_arch`
#
# HKM 08/27/04:
# Currently, linux and MSVC are producing the same results.
#
if test x"$machType" = "xlinux" ; then
/bin/cp flame1_blessed_linux.csv flame1_blessed_tmp.csv
fi
if test x"$machType" = "xcygwin" ; then
/bin/cp flame1_blessed_linux.csv flame1_blessed_tmp.csv
fi
#
$CANTERA_BIN/csvdiff flame1.csv flame1_blessed_tmp.csv > flame1_test.out
retnStat=$?
if [ $retnStat = "1" ]