From bc35ddf8bb7bd038490d049844c329f4016af533 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Mon, 20 Mar 2017 12:26:23 +0100 Subject: [PATCH] fixup SPE script --- jenkins/run-spe.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkins/run-spe.sh b/jenkins/run-spe.sh index 0d25a4596..bb39b5123 100755 --- a/jenkins/run-spe.sh +++ b/jenkins/run-spe.sh @@ -14,15 +14,15 @@ cd deps/opm-data # Run the SPE1/3/9 cases cd spe1 -$WORKSPACE/$configuration/build-opm-simulators/bin/flow deck_filename=SPE1CASE2.DATA +$WORKSPACE/$configuration/build-opm-simulators/bin/flow_legacy deck_filename=SPE1CASE2.DATA test $? -eq 0 || exit 1 cd .. cd spe3 -$WORKSPACE/$configuration/build-opm-simulators/bin/flow max_iter=50 deck_filename=SPE3CASE1.DATA +$WORKSPACE/$configuration/build-opm-simulators/bin/flow_legacy max_iter=50 deck_filename=SPE3CASE1.DATA test $? -eq 0 || exit 1 cd .. cd spe9 -$WORKSPACE/$configuration/build-opm-simulators/bin/flow max_iter=50 deck_filename=SPE9_CP.DATA +$WORKSPACE/$configuration/build-opm-simulators/bin/flow_legacy max_iter=50 deck_filename=SPE9_CP.DATA test $? -eq 0 || exit 1 cd ..