From 9c5eb85103eb92f3b9cabcdb1505c2fbea150f9c Mon Sep 17 00:00:00 2001 From: dzzz2001 <153698752+dzzz2001@users.noreply.github.com> Date: Wed, 8 May 2024 14:00:38 +0800 Subject: [PATCH] Fix: fix the incorrect argument order in Autotest.sh (#4118) --- tests/integrate/Autotest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integrate/Autotest.sh b/tests/integrate/Autotest.sh index fb272f54c0..58e38a18f9 100755 --- a/tests/integrate/Autotest.sh +++ b/tests/integrate/Autotest.sh @@ -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};; @@ -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