GitLab service scheduled maintenance on Friday, March 21st 2025 as of 08h00 Geneva time for an estimated period of 1 hour. Further information under OTG0154918.
runArgs.inputGeneratorFile
we execute the jO to see if runArgs.inputGeneratorFile
gets assigned a valid value or if it is None
PASSES
runArgs.inputGeneratorFile = "a"
ERROR
#runArgs.inputGeneratorFile = "a"
(commented string)PASSES
runArgs.inputGeneratorFile = a
(where a
is an undefined value in the jO)PASSES
runArgs.inputGeneratorFile = a,b
(where a,b
are two strings previously defined in the jO)For instance in the jO I put:
a="a"
b="b"
runArgs.inputGeneratorFile = a,b
ERROR
Closes #120 (closed)