disable asynchronous output for the ECL output test

this leads to crashes deeply inside libecl. My cursory hypotheses are
that this test makes the assumption that the output is written
synchronously (it tries to read back the results from disk
immediately) and/or that libecl is not threadsafe.
This commit is contained in:
Andreas Lauser
2018-03-21 10:31:15 +01:00
parent e83cc94cea
commit 7de09c08f2
+1
View File
@@ -79,6 +79,7 @@ namespace Ewoms {
namespace Properties {
NEW_TYPE_TAG(TestEclOutputTypeTag, INHERITS_FROM(BlackOilModel, EclBaseProblem));
SET_BOOL_PROP(TestEclOutputTypeTag, EnableGravity, false);
SET_BOOL_PROP(TestEclOutputTypeTag, EnableAsyncEclOutput, false);
}}
static const int day = 24 * 60 * 60;