Skip to content
Merged
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
3 changes: 2 additions & 1 deletion cscs-checks/system/slurm/slurm.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# SPDX-License-Identifier: BSD-3-Clause

import reframe as rfm
import reframe.utility.os_ext as ext
import reframe.utility.sanity as sn


Expand Down Expand Up @@ -95,7 +96,7 @@ def __init__(self):
super().__init__()
self.valid_systems = ['daint:login', 'dom:login']
self.executable = 'srun'
self.executable_opts = ['hostname']
self.executable_opts = ['-A', ext.osgroup(), 'hostname']
self.sanity_patterns = sn.assert_found(
r'error: You have to specify, at least, what sort of node you '
r'need: -C gpu for GPU enabled nodes, or -C mc for multicore '
Expand Down