Merge pull request #30708 from taosdata/fix/ctest

enh: refine ctest command to exclude specific tests
This commit is contained in:
WANG Xu 2025-04-09 10:32:36 +08:00 committed by GitHub
commit 3497e31f11
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ sleep 10
# Run ctest and capture output and return code
ctest_output="unit-test.log"
ctest -E "cunit_test" -j8 2>&1 | tee "$ctest_output"
ctest -E "cunit_test|pcre*|example*" -j8 2>&1 | tee "$ctest_output"
ctest_ret=${PIPESTATUS[0]}
# Read the captured output