Skip to content

Commit

Permalink
Merge pull request eth-cscs#190 from lucamar/fix-environ_check
Browse files Browse the repository at this point in the history
Workaround for CrayVariablesCheckEiger with CPE 23.12
  • Loading branch information
lucamar authored Apr 26, 2024
2 parents dea38f6 + 9109510 commit 28ae64f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions checks/prgenv/environ_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ def skip_modules(self):
@rfm.simple_test
class CrayVariablesCheckEiger(CrayVariablesCheck):
cray_module = parameter([
'cray-fftw', 'cray-hdf5', 'cray-hdf5-parallel', 'cray-libsci',
'cray-fftw', 'cray-hdf5', 'cray-hdf5-parallel',
'cray-mpich', 'cray-openshmemx', 'cray-parallel-netcdf', 'cray-pmi',
'cray-python', 'cray-R', 'gcc', 'papi'
'cray-python', 'cray-R', 'papi'
])
valid_systems = ['eiger:login', 'pilatus:login', 'hohgant:login']

Expand All @@ -108,5 +108,5 @@ def load_cray_module(self):
@run_after('init')
def skip_modules(self):
# FIXME: These modules should be fixed in later releases
if self.cray_module in {'cray-fftw', 'cray-python'}:
if self.cray_module in {'cray-fftw', 'cray-libsci', 'cray-python'}:
self.valid_systems = []

0 comments on commit 28ae64f

Please sign in to comment.