From a2f06e41ce6b7c5f7f6126c6dd11a32b5e048416 Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Fri, 27 Aug 2004 20:21:48 +0000 Subject: [PATCH] Currently, linux and MSVC are producing the same results on this test problem. I changed runtest to substitute the right machine dependent blessed file. --- test_problems/python/runtest | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test_problems/python/runtest b/test_problems/python/runtest index f85c16206..27df013a6 100755 --- a/test_problems/python/runtest +++ b/test_problems/python/runtest @@ -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" ]