Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion cscs-checks/apps/cpmd/cpmd_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ def __init__(self, scale):
self.valid_systems += ['dom:gpu']
else:
self.num_tasks = 16
self.time_limit = (0, 20, 0)

self.num_tasks_per_node = 1
self.valid_prog_environs = ['PrgEnv-intel']
Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/apps/paraview/paraview_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self):
self.num_tasks_per_node = 12
self.modules = ['ParaView']

self.time_limit = (0, 1, 0)
self.time_limit = '1m'
self.executable = 'pvbatch'
self.executable_opts = ['coloredSphere.py']

Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/microbenchmarks/spec-accel/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def __init__(self, prg_envs):

self.num_tasks = 1
self.num_tasks_per_node = 1
self.time_limit = (0, 30, 0)
self.time_limit = '30m'

self.executable = 'runspec'

Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/prgenv/mpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def __init__(self, required_thread):
}
self.build_system.cppflags = self.cppflags[required_thread]
self.build_system.cppflags += ['-static']
self.time_limit = (0, 1, 0)
self.time_limit = '1m'
found_mpithread = sn.extractsingle(
r'^mpi_thread_required=\w+\s+mpi_thread_supported=\w+'
r'\s+mpi_thread_queried=\w+\s+(?P<result>\d)$',
Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/system/io/ior_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __init__(self, base_dir):
# Default umask is 0022, which generates file permissions -rw-r--r--
# we want -rw-rw-r-- so we set umask to 0002
os.umask(2)
self.time_limit = (0, 5, 0)
self.time_limit = '5m'
# Our references are based on fs types but regression needs reference
# per system.
self.reference = {
Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/system/openstack/s3_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self):
self.tags = {'ops', 'object_store'}
self.valid_systems = ['dom:gpu', 'daint:gpu']
self.valid_prog_environs = ['PrgEnv-gnu']
self.time_limit = (0, 5, 0)
self.time_limit = '5m'
self.maintainers = ['VH', 'GLR']
self.executable = 's3_test.sh'
self.username = getpass.getuser()
Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/system/slurm/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def set_slurm_constraint(self):
class MemoryOverconsumptionCheck(SlurmCompiledBaseCheck):
def __init__(self):
super().__init__()
self.time_limit = (0, 1, 0)
self.time_limit = '1m'
self.sourcepath = 'eatmemory.c'
self.tags.add('mem')
self.executable_opts = ['4000M']
Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/tools/jupyter/jupyter_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self):
self.valid_prog_environs = ['*']
self.sourcesdir = None
self.executable = 'hostname'
self.time_limit = (0, 1, 0)
self.time_limit = '1m'
self.sanity_patterns = sn.assert_found(r'nid\d+', self.stdout)
self.tags = {'production', 'maintenance'}
self.maintainers = ['RS', 'TR']