[cantera]: adding negAtest and skipping nasa9 reader for now
This commit is contained in:
parent
259ee0c852
commit
fc617190c9
5 changed files with 12 additions and 3 deletions
|
|
@ -101,6 +101,7 @@ AC_OUTPUT(Makefile \
|
||||||
test_problems/diamondSurf_dupl/Makefile \
|
test_problems/diamondSurf_dupl/Makefile \
|
||||||
test_problems/fracCoeff/Makefile \
|
test_problems/fracCoeff/Makefile \
|
||||||
test_problems/multiGasTransport/Makefile \
|
test_problems/multiGasTransport/Makefile \
|
||||||
|
test_problems/negATest/Makefile \
|
||||||
test_problems/NASA9poly_test/Makefile \
|
test_problems/NASA9poly_test/Makefile \
|
||||||
test_problems/cathermo/Makefile \
|
test_problems/cathermo/Makefile \
|
||||||
test_problems/cathermo/DH_graph_1/Makefile \
|
test_problems/cathermo/DH_graph_1/Makefile \
|
||||||
|
|
@ -152,7 +153,9 @@ AC_OUTPUT(Makefile \
|
||||||
examples/Makefile \
|
examples/Makefile \
|
||||||
examples/cxx/Makefile)
|
examples/cxx/Makefile)
|
||||||
|
|
||||||
|
# skipped tests
|
||||||
# test_problems/ck2cti/Makefile
|
# test_problems/ck2cti/Makefile
|
||||||
|
# test_problems/nasa9_reader/Makefile
|
||||||
|
|
||||||
|
|
||||||
# FINAL SUMMARY
|
# FINAL SUMMARY
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,13 @@
|
||||||
|
|
||||||
#SUBDIRS = surfkin silane_equil VPsilance_test \
|
#SUBDIRS = surfkin silane_equil VPsilance_test \
|
||||||
negATest diamondSurf_dupl surfSolverTest \
|
diamondSurf_dupl surfSolverTest \
|
||||||
ChemEquil_gri_matrix ChemEquil_gri_pairs \
|
ChemEquil_gri_matrix ChemEquil_gri_pairs \
|
||||||
mixGasTransport printUtilUnitTest
|
mixGasTransport printUtilUnitTest
|
||||||
|
|
||||||
SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs
|
SUBDIRS = cathermo mixGasTransport ChemEquil_gri_matrix ChemEquil_gri_pairs
|
||||||
SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf
|
SUBDIRS += ChemEquil_ionizedGas ChemEquil_red1 CpJump cxx_ex diamondSurf
|
||||||
SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test
|
SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test
|
||||||
|
SUBDIRS += negATest
|
||||||
|
|
||||||
#
|
#
|
||||||
# would be good to add:
|
# would be good to add:
|
||||||
|
|
@ -15,14 +16,14 @@ SUBDIRS += diamondSurf_dupl fracCoeff multiGasTransport NASA9poly_test
|
||||||
# rankine_democxx
|
# rankine_democxx
|
||||||
# min_python
|
# min_python
|
||||||
#
|
#
|
||||||
# nasa9_reader
|
#
|
||||||
# cathermo
|
# cathermo
|
||||||
# VCSnonideal
|
# VCSnonideal
|
||||||
|
|
||||||
|
|
||||||
# skipped:
|
# skipped:
|
||||||
# ck2cti_test
|
# ck2cti_test
|
||||||
|
# nasa9_reader (uses ck2cti)
|
||||||
|
|
||||||
EXTRA_DIST =
|
EXTRA_DIST =
|
||||||
|
|
||||||
|
|
|
||||||
1
test_problems/nasa9_reader/Makefile.am
Normal file
1
test_problems/nasa9_reader/Makefile.am
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
TESTS = runtest
|
||||||
|
|
@ -30,6 +30,7 @@ retnStat=$?
|
||||||
if [ $retnStat = "0" ]
|
if [ $retnStat = "0" ]
|
||||||
then
|
then
|
||||||
echo "Successful diff comparison on ck2cti test (nasa9_reader/sample.inp)"
|
echo "Successful diff comparison on ck2cti test (nasa9_reader/sample.inp)"
|
||||||
|
return 0
|
||||||
else
|
else
|
||||||
echo "########################################################"
|
echo "########################################################"
|
||||||
echo "Unsuccessful diff comparison on ck2cti test (nasa9_reader/sample.inp)"
|
echo "Unsuccessful diff comparison on ck2cti test (nasa9_reader/sample.inp)"
|
||||||
|
|
@ -38,4 +39,5 @@ else
|
||||||
echo " test_problems/nasa9_reader/sampleb.cti"
|
echo " test_problems/nasa9_reader/sampleb.cti"
|
||||||
echo " test_problems/nasa9_reader/sample_blessed.cti"
|
echo " test_problems/nasa9_reader/sample_blessed.cti"
|
||||||
echo "########################################################"
|
echo "########################################################"
|
||||||
|
return 1
|
||||||
fi
|
fi
|
||||||
|
|
@ -26,9 +26,11 @@ retnStat=$?
|
||||||
if [ $retnStat = "0" ]
|
if [ $retnStat = "0" ]
|
||||||
then
|
then
|
||||||
echo "successful diff comparison on $testName test"
|
echo "successful diff comparison on $testName test"
|
||||||
|
return 0
|
||||||
else
|
else
|
||||||
echo "unsuccessful diff comparison on $testName test"
|
echo "unsuccessful diff comparison on $testName test"
|
||||||
echo "FAILED" > csvCode.txt
|
echo "FAILED" > csvCode.txt
|
||||||
temp_success="1"
|
temp_success="1"
|
||||||
|
return 1
|
||||||
fi
|
fi
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue