Skip to content
Snippets Groups Projects
Unverified Commit 60ecb6b4 authored by Patrick Cloke's avatar Patrick Cloke Committed by GitHub
Browse files

Fix running complement.sh script. (#11368)

By reverting changes from #11166 in this script. Specifically commit
13f084eb.
parent 319dcb95
No related branches found
No related tags found
No related merge requests found
Fix running `scripts-dev/complement.sh`, which was broken in v1.47.0rc1.
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
set -e set -e
# Change to the repository root # Change to the repository root
cd "$(dirname "$0")/.." cd "$(dirname $0)/.."
# Check for a user-specified Complement checkout # Check for a user-specified Complement checkout
if [[ -z "$COMPLEMENT_DIR" ]]; then if [[ -z "$COMPLEMENT_DIR" ]]; then
...@@ -61,8 +61,8 @@ cd "$COMPLEMENT_DIR" ...@@ -61,8 +61,8 @@ cd "$COMPLEMENT_DIR"
EXTRA_COMPLEMENT_ARGS="" EXTRA_COMPLEMENT_ARGS=""
if [[ -n "$1" ]]; then if [[ -n "$1" ]]; then
# A test name regex has been set, supply it to Complement # A test name regex has been set, supply it to Complement
EXTRA_COMPLEMENT_ARGS=(-run "$1") EXTRA_COMPLEMENT_ARGS+="-run $1 "
fi fi
# Run the tests! # Run the tests!
go test -v -tags synapse_blacklist,msc2946,msc3083,msc2403,msc2716 -count=1 "${EXTRA_COMPLEMENT_ARGS[@]}" ./tests/... go test -v -tags synapse_blacklist,msc2946,msc3083,msc2403,msc2716 -count=1 $EXTRA_COMPLEMENT_ARGS ./tests/...
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment