remove polymer integration test

This commit is contained in:
Arne Morten Kvarving 2017-11-29 14:00:38 +01:00
parent 937e8afb77
commit 70584b4a55

View File

@ -1,23 +0,0 @@
#!/bin/bash
pushd .
cd deps/opm-data
# Run the simple2D polymer case
cd polymer_simple2D
$WORKSPACE/$configuration/build-opm-simulators/bin/flow run.param
test $? -eq 0 || exit 1
cd ..
# Compare OPM with eclipse reference
compareECL=$WORKSPACE/$configuration/install/bin/compareECL
reffile=polymer_simple2D/eclipse-simulation/2D_THREEPHASE_POLY_HETER
opmfile=polymer_simple2D/opm-simulation-reference/flow/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