Merge pull request #5639 from akva2/fix_missing_test_args

fixed: missing TEST_ARGS in test specifications
This commit is contained in:
Bård Skaflestad 2024-10-02 11:53:24 +02:00 committed by GitHub
commit 836e71cca0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 3 deletions

View File

@ -238,14 +238,16 @@ add_test_compareECLFiles(CASENAME aquflux_01
SIMULATOR flow SIMULATOR flow
ABS_TOL ${abs_tol} ABS_TOL ${abs_tol}
REL_TOL ${rel_tol} REL_TOL ${rel_tol}
DIR aquifers --solver-max-time-step-in-days=1) DIR aquifers
TEST_ARGS --solver-max-time-step-in-days=1)
add_test_compareECLFiles(CASENAME aquflux_02 add_test_compareECLFiles(CASENAME aquflux_02
FILENAME AQUFLUX-02 FILENAME AQUFLUX-02
SIMULATOR flow SIMULATOR flow
ABS_TOL ${abs_tol} ABS_TOL ${abs_tol}
REL_TOL ${rel_tol} REL_TOL ${rel_tol}
DIR aquifers --solver-max-time-step-in-days=1) DIR aquifers
TEST_ARGS --solver-max-time-step-in-days=1)
add_test_compareECLFiles(CASENAME spe3 add_test_compareECLFiles(CASENAME spe3
FILENAME SPE3CASE1 FILENAME SPE3CASE1

View File

@ -141,7 +141,7 @@ else
fi fi
if [ -n "$CONVERT_ECL" ] if [ -n "$CONVERT_ECL" ]
then then
for dep in opm-common opm-grid opm-models for dep in opm-common opm-grid
do do
pushd $WORKSPACE/deps/$dep > /dev/null pushd $WORKSPACE/deps/$dep > /dev/null
name=`printf "%-14s" $dep` name=`printf "%-14s" $dep`