-
Notifications
You must be signed in to change notification settings - Fork 4.6k
Closed
Labels
Description
Looks like #35263 change broke the --command option e.g the igprof jobs for 12.1.X are failing with error
runTheMatrix.py -w upgrade -l 23434.21 --command '-n 10 --profile pp'
usage: usage: runTheMatrix.py --show -s [-h] [-b BATCHNAME] [-m MEMORYOFFSET]
[--addMemPerCore MEMPERCORE]
....
[--force-cuda-runtime-version CUDARUNTIMEVERSION]
usage: runTheMatrix.py --show -s : error: argument --command: expected one argument
Strange thing is that the following works
-
runTheMatrix.py -w upgrade -l 23434.21 --command ' -n 10 --profile pp'
which shows thatopt.commandis-n 10 --profile pp -
runTheMatrix.py -w upgrade -l 23434.21 --command='-n 10 --profile pp'
which shows thatopt.commandis-n 10 --profile pp
I will update the bot to add the extra space for igprof tests. I do not know if there is any fix to avoid this.