Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion checks/prgenv/uenv_fixincludes.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@
import reframe.utility.sanity as sn


@rfm.xfail('ICON uenvs are based on old versions of spack that don\'t fix GCC\'s includes', lambda self: self.current_environ.name.startswith('icon')) # noqa:E501
@rfm.xfail(
"ICON uenvs are based on old versions of spack that don't fix GCC's includes",
lambda self: (
self.current_environ.name.startswith("icon_25.2_v4")
or self.current_environ.name.startswith("icon-dsl_25.12_v2")
),
) # noqa:E501
@rfm.simple_test
class UenvFixincludes(rfm.RunOnlyRegressionTest):
descr = '''
Expand Down