Skip to content

Commit 9c5eb85

Browse files
authored
Fix: fix the incorrect argument order in Autotest.sh (#4118)
1 parent 3344e50 commit 9c5eb85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integrate/Autotest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ case='^[^#].*_.*$'
1717
# enable AddressSanitizer
1818
sanitize=false
1919

20-
while getopts a:n:t:c:s:r:g:f flag
20+
while getopts a:n:t:c:s:r:f:g flag
2121
do
2222
case "${flag}" in
2323
a) abacus=${OPTARG};;
@@ -26,8 +26,8 @@ do
2626
c) ca=${OPTARG};;
2727
s) sanitize=${OPTARG};;
2828
r) case=${OPTARG};;
29-
g) g=true;; #generate test reference
3029
f) cases_file=${OPTARG};;
30+
g) g=true;; #generate test reference
3131
esac
3232
done
3333

0 commit comments

Comments
 (0)