Skip to content

Commit 3d2e9de

Browse files
committed
Address PR remarks
1 parent 4e3e80a commit 3d2e9de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

config/cscs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,8 +534,8 @@ class ReframeSettings:
534534

535535
'builtin': {
536536
'cc': 'cc',
537-
'cxx': '',
538-
'ftn': '',
537+
'cxx': 'CC',
538+
'ftn': 'ftn',
539539
},
540540

541541
'builtin-gcc': {

cscs-checks/libraries/boost/boost_python_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, boost_version, cray_gnu_version, python_version):
1414
'support') % (boost_version, cray_gnu_version,
1515
python_version)
1616
self.valid_systems = ['daint:mc', 'daint:gpu', 'dom:mc', 'dom:gpu']
17-
self.valid_prog_environs = ['PrgEnv-gnu']
17+
self.valid_prog_environs = ['builtin']
1818
python_major, python_minor = python_version.split('.')
1919
self.modules = ['Boost/%s-CrayGNU-%s-python%s' % (
2020
boost_version, cray_gnu_version, python_major)]

cscs-checks/libraries/gridtools/gridtools_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class GridToolsCheck(rfm.RegressionTest):
1818
def __init__(self, variant):
1919
# Check if this is a device check
2020
self.descr = 'GridTools test base'
21-
self.valid_prog_environs = ['PrgEnv-gnu']
21+
self.valid_prog_environs = ['builtin']
2222
self.modules = ['CMake', 'Boost']
2323
is_cuda_test = 'cuda' in variant
2424
if is_cuda_test:

cscs-checks/libraries/magma/magma_checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self, subtest):
1818

1919
self.prebuild_cmd = ['patch < patch.txt']
2020
self.build_system = 'Make'
21-
self.valid_prog_environs = ['PrgEnv-intel']
21+
self.valid_prog_environs = ['builtin']
2222
self.build_system.makefile = 'Makefile_%s' % subtest
2323
# Compile with -O0 since with a higher level the compiler seems to
2424
# optimise something away

0 commit comments

Comments
 (0)