49 lines
1.2 KiB
Bash
Executable file
49 lines
1.2 KiB
Bash
Executable file
#!/bin/sh
|
|
#
|
|
#
|
|
|
|
temp_success="1"
|
|
/bin/rm -f output.txt diff_test.txt results.txt diff_csv.txt
|
|
tname="surfaceSolver"
|
|
|
|
#################################################################
|
|
#
|
|
#################################################################
|
|
CANTERA_DATA=${CANTERA_DATA:=../../data/inputs}; export CANTERA_DATA
|
|
|
|
CANTERA_BIN=${CANTERA_BIN:=../../bin}
|
|
./surfaceSolver haca2.xml > output.txt
|
|
retnStat=$?
|
|
if [ $retnStat != "0" ]
|
|
then
|
|
temp_success="0"
|
|
echo "surfaceSolver ($tname test) returned with bad status, $retnStat, check output"
|
|
fi
|
|
diff results.txt results_blessed.txt > diff_csv.txt
|
|
retnStat_csv=$?
|
|
|
|
diff -w output.txt surfaceSolver_blessed.out > diff_out.txt
|
|
retnStat_txt=$?
|
|
|
|
if test $retnStat_csv = "0"
|
|
then
|
|
echo "Successful test comparison on "`pwd`
|
|
if [ $retnStat_txt != "0" ]
|
|
then
|
|
echo " But, text output files have differences. See diff_out.txt"
|
|
fi
|
|
else
|
|
echo "Unsuccessful test comparison on "`pwd` " test"
|
|
if test $retnStat_csv != "0"
|
|
then
|
|
echo " results files are different - see diff_csv.txt"
|
|
fi
|
|
if test $retnStat_txt != "0"
|
|
then
|
|
echo " And, text output files have differences. See diff_out.txt"
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
|