From 3288548c7e227e9c7b7e03533dd95b1dd119119e Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Wed, 21 Mar 2018 10:31:15 +0100 Subject: [PATCH] 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. --- tests/test_ecl_output.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_ecl_output.cc b/tests/test_ecl_output.cc index 82010a544..699adbc20 100644 --- a/tests/test_ecl_output.cc +++ b/tests/test_ecl_output.cc @@ -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;