From 5c308614b64994be454d8cce42279c5cd4457f70 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Thu, 3 Nov 2016 09:08:39 +0100 Subject: [PATCH] changed: drop usage of python based comparison script in polymer integration test replace with compareECL from opm-output --- jenkins/run-polymer.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/jenkins/run-polymer.sh b/jenkins/run-polymer.sh index b73ea8a4b..fb4cc01ae 100755 --- a/jenkins/run-polymer.sh +++ b/jenkins/run-polymer.sh @@ -10,7 +10,14 @@ test $? -eq 0 || exit 1 cd ../.. # Compare OPM with eclipse reference -PYTHONPATH=$WORKSPACE/$configuration/install/lib/python2.7/dist-packages/ python output_comparator/src/compare_eclipse.py polymer_test_suite/simple2D/eclipse-simulation/ polymer_test_suite/simple2D/opm-simulation/ 2D_THREEPHASE_POLY_HETER 0.0006 0.004 +compareECL=$WORKSPACE/$configuration/install/bin/compareECL +reffile=polymer_test_suite/simple2D/eclipse-simulation/2D_THREEPHASE_POLY_HETER +opmfile=polymer_test_suite/simple2D/opm-simulation/2D_THREEPHASE_POLY_HETER +$compareECL $reffile $opmfile 1.0 0.004 -k SGAS +test $? -eq 0 || exit 1 +$compareECL $reffile $opmfile 1.0 0.004 -k SWAT +test $? -eq 0 || exit 1 +$compareECL $reffile $opmfile 0.0006 1.0 -k PRESSURE test $? -eq 0 || exit 1 popd