Skip to content

Commit

Permalink
Fix: fix the incorrect argument order in Autotest.sh (#4118)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzzz2001 committed May 8, 2024
1 parent 3344e50 commit 9c5eb85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integrate/Autotest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ case='^[^#].*_.*$'
# enable AddressSanitizer
sanitize=false

while getopts a:n:t:c:s:r:g:f flag
while getopts a:n:t:c:s:r:f:g flag
do
case "${flag}" in
a) abacus=${OPTARG};;
Expand All @@ -26,8 +26,8 @@ do
c) ca=${OPTARG};;
s) sanitize=${OPTARG};;
r) case=${OPTARG};;
g) g=true;; #generate test reference
f) cases_file=${OPTARG};;
g) g=true;; #generate test reference
esac
done

Expand Down

0 comments on commit 9c5eb85

Please sign in to comment.