From b75551adb1990e8e77cdd1f1c4f325aa07318936 Mon Sep 17 00:00:00 2001 From: Vasileios Karakasis Date: Wed, 25 Jan 2023 23:12:41 +0100 Subject: [PATCH] Pass long job options with `=` --- reframe/frontend/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reframe/frontend/cli.py b/reframe/frontend/cli.py index fe72e0a7d9..af37b6ba3a 100644 --- a/reframe/frontend/cli.py +++ b/reframe/frontend/cli.py @@ -935,7 +935,7 @@ def print_infoline(param, value): elif len(optstr) == 1: parsed_job_options.append(f'-{optstr} {valstr}') else: - parsed_job_options.append(f'--{optstr} {valstr}') + parsed_job_options.append(f'--{optstr}={valstr}') # Locate and load checks; `force=True` is not needed for normal # invocations from the command line and has practically no effect, but