commit 4f3c3d1e6992a6b2976d5ee514808125fd1aae44 from: Omar Polo via: Thomas Adam date: Tue Jan 10 12:44:02 2023 UTC regress: strip trailing / from GOT_TEST_ROOT otherwise most test fails because of double "/" ending in paths and tricking some check into thinking that's failed. ok jamsek stsp commit - 9c677dea772784267e7ff8736e77d5b7423dd7fe commit + 4f3c3d1e6992a6b2976d5ee514808125fd1aae44 blob - f1be0f27a2a9c32efd6615dcb1bcb7ac413d4fd2 blob + a71399675b8b4529b335bd950c4d69784afeaeb9 --- regress/cmdline/common.sh +++ regress/cmdline/common.sh @@ -297,7 +297,7 @@ test_parseargs() case $flag in q) export GOT_TEST_QUIET=1 ;; - r) export GOT_TEST_ROOT=$OPTARG + r) export GOT_TEST_ROOT=${OPTARG%/} ;; ?) echo "Supported options:" echo " -q: quiet mode"