Skip to content

Commit

Permalink
Merge pull request #159 from ecmwf-ifs/nabr-debug-ci-segfaults
Browse files Browse the repository at this point in the history
Bugfix: Memory error in Statement functions test
  • Loading branch information
reuterbal authored Oct 2, 2023
2 parents da56a26 + 3a321a1 commit c4649af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_frontends.py
Original file line number Diff line number Diff line change
Expand Up @@ -1415,7 +1415,7 @@ def test_regex_function_inline_return_type():
assert 'dot_product_ecv' in routine.variables


@pytest.mark.parametrize('frontend', available_frontends(xfail=(OFP, 'No support for prefix implemented')))
@pytest.mark.parametrize('frontend', available_frontends(xfail=[(OFP, 'No support for prefix implemented')]))
def test_regex_prefix(frontend):
fcode = """
module some_mod
Expand Down
2 changes: 1 addition & 1 deletion tests/test_subroutine.py
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,7 @@ def test_subroutine_stmt_func(here, frontend):
integer :: tmp
mult(i, j) = i * j
array(i) = i
array(a) = a
tmp = plus(a, 5)
tmp = minus(tmp, 1)
b = mult(2, tmp)
Expand Down

0 comments on commit c4649af

Please sign in to comment.