Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release-20.2: build: bump timeout for SQL Race Logic tests to 4 hours #54787

Merged
merged 2 commits into from
Sep 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion build/teamcity-testlogicrace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ maybe_ccache

mkdir -p artifacts

TESTTIMEOUT=4h

run_json_test build/builder.sh \
stdbuf -oL -eL \
make testrace \
GOTESTFLAGS=-json \
PKG=./pkg/sql/logictest \
TESTTIMEOUT="${TESTTIMEOUT}" \
TESTFLAGS='-v' \
ENABLE_ROCKSDB_ASSERTIONS=1

Expand All @@ -25,6 +28,7 @@ run_json_test build/builder.sh \
GOTESTFLAGS=-json \
PKG=./pkg/sql/logictest \
TESTS='^TestLogic/local$$' \
TESTTIMEOUT="${TESTTIMEOUT}" \
TESTFLAGS='-optimizer-cost-perturbation=0.9 -v' \
ENABLE_ROCKSDB_ASSERTIONS=1

Expand All @@ -43,9 +47,10 @@ for file in $LOGICTESTS; do
run_json_test build/builder.sh \
stdbuf -oL -eL \
make testrace \
GOTESTFLAGS=-json \
GOTESTFLAGS=-json \
PKG=./pkg/sql/logictest \
TESTS='^TestLogic/local/'${file}'$$' \
TESTTIMEOUT="${TESTTIMEOUT}" \
TESTFLAGS='-disable-opt-rule-probability=0.5 -v' \
ENABLE_ROCKSDB_ASSERTIONS=1 \
fi
Expand Down