File tree 2 files changed +5
-3
lines changed
src/ert/resources/forward_models/res/script
tests/ert/unit_tests/resources
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ def failed_due_to_license_problems(self) -> bool:
47
47
EclipseResult = namedtuple ("EclipseResult" , "errors bugs" )
48
48
body_sub_pattern = r"(\s^\s@.+$)*"
49
49
date_sub_pattern = r"\s+AT TIME\s+(?P<Days>\d+\.\d+)\s+DAYS\s+\((?P<Date>(.+)):\s*$"
50
- error_pattern_e100 = rf"^\s@-- ERROR{ date_sub_pattern } ${ body_sub_pattern } "
50
+ error_pattern_e100 = (
51
+ rf"^\s@-- ERROR\s(FROM PROCESSOR \d+)?{ date_sub_pattern } ${ body_sub_pattern } "
52
+ )
51
53
error_pattern_e300 = rf"^\s@--Error${ body_sub_pattern } "
52
54
slave_started_pattern = (
53
55
rf"^\s@--MESSAGE{ date_sub_pattern } \s^\s@\s+STARTING SLAVE.+${ body_sub_pattern } "
Original file line number Diff line number Diff line change @@ -649,8 +649,8 @@ def test_slave_started_message_are_not_counted_as_errors():
649
649
@ THIS IS A DUMMY ERROR MESSAGE"""
650
650
651
651
_DUMMY_ERROR_MESSAGE_MULTIPLE_CPUS_E100 = """\
652
- @-- ERROR FROM PROCESSOR 1 AT TIME 0.0 DAYS (21-DEC-2002):
653
- @ LICENSE FAILURE: ERROR NUMBER IS -4"""
652
+ @-- ERROR FROM PROCESSOR 1 AT TIME 0.0 DAYS (21-DEC-2002):
653
+ @ LICENSE FAILURE: ERROR NUMBER IS -4"""
654
654
655
655
_DUMMY_ERROR_MESSAGE_E300 = """\
656
656
@--Error
You can’t perform that action at this time.
0 commit comments