From ad655bcfc03ae951fe517f96a077d65fe06f04ad Mon Sep 17 00:00:00 2001 From: alesapin Date: Wed, 21 Oct 2020 17:23:45 +0300 Subject: [PATCH] Add stateless flaky check --- docker/test/stateless/run.sh | 2 +- tests/ci/ci_config.json | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/docker/test/stateless/run.sh b/docker/test/stateless/run.sh index 3a0842d07b7..d614cb152a8 100755 --- a/docker/test/stateless/run.sh +++ b/docker/test/stateless/run.sh @@ -23,7 +23,7 @@ read -ra ADDITIONAL_OPTIONS <<< "${ADDITIONAL_OPTIONS:-}" function run_tests() { for i in $(seq 1 $NUM_TRIES); do - clickhouse-test --testname --shard --zookeeper --hung-check --print-time "$SKIP_LIST_OPT" "${ADDITIONAL_OPTIONS[@]}" "$SKIP_TESTS_OPTION" 2>&1 | ts '%Y-%m-%d %H:%M:%S' | tee test_output/test_result.txt + clickhouse-test --testname --shard --zookeeper --hung-check --print-time "$SKIP_LIST_OPT" "${ADDITIONAL_OPTIONS[@]}" "$SKIP_TESTS_OPTION" 2>&1 | ts '%Y-%m-%d %H:%M:%S' | tee -a test_output/test_result.txt done } diff --git a/tests/ci/ci_config.json b/tests/ci/ci_config.json index 6cc7a4a398a..418b8ce0356 100644 --- a/tests/ci/ci_config.json +++ b/tests/ci/ci_config.json @@ -584,6 +584,18 @@ "clang-tidy": "disable", "with_coverage": false } + }, + "Functional stateless tests flaky check (address)": { + "required_build_properties": { + "compiler": "clang-11", + "package_type": "deb", + "build_type": "relwithdebuginfo", + "sanitizer": "address", + "bundled": "bundled", + "splitted": "unsplitted", + "clang-tidy": "disable", + "with_coverage": false + } } } }