From 2ad7bef699a7981560f526583df672f890c001b6 Mon Sep 17 00:00:00 2001 From: jg Date: Wed, 6 Nov 2019 06:09:03 -0600 Subject: [PATCH 1/2] config --- config/tiger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/tiger.py b/config/tiger.py index bf4b4e7e32..61ef1c085b 100644 --- a/config/tiger.py +++ b/config/tiger.py @@ -66,7 +66,7 @@ class ReframeSettings: 'PrgEnv-cray_classic': { 'type': 'ProgEnvironment', - 'modules': ['PrgEnv-cray', 'cce/9.1.0.129-classic'], + 'modules': ['PrgEnv-cray', 'cce/9.1.0-classic'], }, 'PrgEnv-gnu': { From 2d644e6e217615f3ea5936de224cd8d83572ed69 Mon Sep 17 00:00:00 2001 From: jg Date: Thu, 12 Dec 2019 06:53:32 -0600 Subject: [PATCH 2/2] regex --- cscs-checks/tools/profiling_and_debugging/perftools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cscs-checks/tools/profiling_and_debugging/perftools.py b/cscs-checks/tools/profiling_and_debugging/perftools.py index b5eac4d59a..0b59bf7925 100644 --- a/cscs-checks/tools/profiling_and_debugging/perftools.py +++ b/cscs-checks/tools/profiling_and_debugging/perftools.py @@ -75,7 +75,7 @@ def __init__(self, lang): self.post_run = ['grep INFO rfm_*_build.err'] self.sanity_patterns = sn.all([ sn.assert_found('SUCCESS', self.stdout), - sn.assert_found(r'^INFO: creating the CrayPat-instrumented exec', + sn.assert_found(r'^INFO: creating the (\w+)-instrumented exec', self.stdout), sn.assert_found('Table 1: Profile by Function', self.stdout), ])