blob: 3e89001edc6e223ed02b4f80ec2fc12b23f10dae [file]
############################################################################
# Copyright (C) SchedMD LLC.
############################################################################
import re
import atf
def test_help():
"""Verify srun --help displays the help page"""
output = atf.run_command_output("srun --help", fatal=True)
assert re.search(r"Usage: srun .*?OPTIONS.*?executable.*?args", output) is not None
assert re.search(r"-b, --begin=time", output) is not None
assert re.search(r"-N, --nodes=N", output) is not None
assert re.search(r"-q, --qos=qos", output) is not None
assert re.search(r"--mincpus=n", output) is not None
assert re.search(r"-G, --gpus=n", output) is not None