From 4f850255fdf80580323c8753e75339a700eef459 Mon Sep 17 00:00:00 2001 From: ajocksch Date: Wed, 3 Mar 2021 14:37:09 +0100 Subject: [PATCH] [test] ior_check --- cscs-checks/system/io/ior_check.py | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/cscs-checks/system/io/ior_check.py b/cscs-checks/system/io/ior_check.py index 38ee72815d..879df081a6 100644 --- a/cscs-checks/system/io/ior_check.py +++ b/cscs-checks/system/io/ior_check.py @@ -23,6 +23,12 @@ def __init__(self, base_dir): self.prerun_cmds = ['mkdir -p ' + self.test_dir] self.test_file = os.path.join(self.test_dir, 'ior') self.fs = { + '/scratch/e1000': { + 'valid_systems': ['eiger:mc'], + 'eiger': { + 'num_tasks': 10, + } + }, '/scratch/snx3000tds': { 'valid_systems': ['dom:gpu', 'dom:mc'], 'dom': { @@ -105,7 +111,7 @@ def __init__(self, base_dir): self.maintainers = ['SO', 'GLR'] - systems_to_test = ['dom', 'daint'] + systems_to_test = ['dom', 'daint', 'eiger'] if self.current_system.name in systems_to_test: self.tags |= {'production', 'external-resources'} @@ -115,7 +121,8 @@ def set_exec_opts(self): self.executable_opts += ['-o', self.test_file] -@rfm.parameterized_test(['/scratch/snx3000tds'], +@rfm.parameterized_test(['/scratch/e1000'], + ['/scratch/snx3000tds'], ['/scratch/snx3000'], ['/users'], ['/scratch/shared/fulen']) @@ -132,7 +139,8 @@ def __init__(self, base_dir): self.tags |= {'write'} -@rfm.parameterized_test(['/scratch/snx3000tds'], +@rfm.parameterized_test(['/scratch/e1000'], + ['/scratch/snx3000tds'], ['/scratch/snx3000'], ['/users'], ['/scratch/shared/fulen'])