Skip to content

Commit

Permalink
Fix a couple of quoting issues in test script
Browse files Browse the repository at this point in the history
  • Loading branch information
bboreham committed Oct 2, 2019
1 parent 567a090 commit ec49ffe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/test
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ while [ $# -gt 0 ]; do
esac
done

GO_TEST_ARGS=(-tags "${TAGS[@]}" -cpu 4 -timeout "$TIMEOUT" "$VERBOSE")
GO_TEST_ARGS=(-tags "${TAGS[@]}" -cpu 4 -timeout "$TIMEOUT" $VERBOSE)

if [ -n "$SLOW" ] || [ -n "$CIRCLECI" ]; then
SLOW=true
fi

if [ -n "$SLOW" ]; then
GO_TEST_ARGS=("${GO_TEST_ARGS[@]}" "${RACE}")
GO_TEST_ARGS=("${GO_TEST_ARGS[@]}" ${RACE})

# shellcheck disable=SC2153
if [ -n "$COVERDIR" ]; then
Expand Down

0 comments on commit ec49ffe

Please sign in to comment.