Skip to content

Commit 7672c5f

Browse files
lapack_testing.py: add missing arguments to getopt
The getopt command line parser did not expect arguments after the `--bin` and `--dir` options.
1 parent 2b1eabf commit 7672c5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack_testing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Arguments
1212
try:
1313
opts, args = getopt.getopt(sys.argv[1:], "hd:b:srep:t:n",
14-
["help", "dir", "bin", "short", "run", "error","prec=","test=","number"])
14+
["help", "dir=", "bin=", "short", "run", "error","prec=","test=","number"])
1515

1616
except getopt.error as msg:
1717
print(msg)

0 commit comments

Comments
 (0)