From e4fa31c91d51cf2b8a6f6cbc4fbb6b0a50552603 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Wed, 6 May 2026 08:23:36 -0700 Subject: [PATCH] chore: fix sidecar flag in runtests to correctly pass test option There was a typo in the runtests script that was preventing passing the correct sidecar option to the tests. --- runtests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtests.sh b/runtests.sh index 497413b4..a86f3659 100755 --- a/runtests.sh +++ b/runtests.sh @@ -57,7 +57,7 @@ fi # run tests # full flow tests -if ! ./versitygw test -a user -s pass -e http://127.0.0.1:7070 full-flow --parallel $$SIDECAR_TEST_FLAG; then +if ! ./versitygw test -a user -s pass -e http://127.0.0.1:7070 full-flow --parallel $SIDECAR_TEST_FLAG; then echo "full flow tests failed" kill $GW_PID exit 1 @@ -94,7 +94,7 @@ fi # run tests # full flow tests -if ! ./versitygw test --allow-insecure -a user -s pass -e https://127.0.0.1:7071 full-flow --parallel $$SIDECAR_TEST_FLAG; then +if ! ./versitygw test --allow-insecure -a user -s pass -e https://127.0.0.1:7071 full-flow --parallel $SIDECAR_TEST_FLAG; then echo "full flow tests failed" kill $GW_HTTPS_PID exit 1 @@ -131,7 +131,7 @@ fi # run tests # full flow tests -if ! ./versitygw test -a user -s pass -e http://127.0.0.1:7072 full-flow -vs --parallel $$SIDECAR_TEST_FLAG; then +if ! ./versitygw test -a user -s pass -e http://127.0.0.1:7072 full-flow -vs --parallel $SIDECAR_TEST_FLAG; then echo "versioning-enabled full-flow tests failed" kill $GW_VS_PID exit 1 @@ -163,7 +163,7 @@ fi # run tests # full flow tests -if ! ./versitygw test --allow-insecure -a user -s pass -e https://127.0.0.1:7073 full-flow -vs --parallel $$SIDECAR_TEST_FLAG; then +if ! ./versitygw test --allow-insecure -a user -s pass -e https://127.0.0.1:7073 full-flow -vs --parallel $SIDECAR_TEST_FLAG; then echo "versioning-enabled full-flow tests failed" kill $GW_VS_HTTPS_PID exit 1