add regression tests for flow_blackoil_alugrid and flow_blackoil_polyhedralgrid

we should have some basic testing for these executables
This commit is contained in:
Arne Morten Kvarving 2023-08-03 13:23:23 +02:00
parent c6f1aa0110
commit 8aa602a8a5

View File

@ -1242,3 +1242,21 @@ add_test_compareECLFiles(CASENAME 01_multflt
REL_TOL ${rel_tol} REL_TOL ${rel_tol}
DIR mult) DIR mult)
if(BUILD_FLOW_POLY_GRID)
add_test_compareECLFiles(CASENAME spe12_polyhedralgrid
FILENAME SPE1CASE2
SIMULATOR flow_blackoil_polyhedralgrid
ABS_TOL ${abs_tol}
REL_TOL ${coarse_rel_tol}
DIR spe1)
endif()
if(dune-alugrid_FOUND AND BUILD_FLOW_ALU_GRID)
add_test_compareECLFiles(CASENAME spe12_alugrid
FILENAME SPE1CASE2
SIMULATOR flow_blackoil_alugrid
ABS_TOL ${abs_tol}
REL_TOL ${coarse_rel_tol}
DIR spe1)
endif()