Skip to content

Commit

Permalink
Let asan/tsan tests run in "CI" mode with no hard time constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhill committed Dec 2, 2019
1 parent 2b41add commit e625381
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,13 @@ java: .PHONY
asan:
@(echo "### Running tests with AddressSanitizer")
(cd .. ; ./dev-conf.sh asan)
./broker_version_tests.py $(KAFKA_VERSION)
CI=true ./broker_version_tests.py $(KAFKA_VERSION)

# Run test-suite with TSAN
tsan:
@(echo "### Running tests with ThreadSanitizer")
(cd .. ; ./dev-conf.sh tsan)
./broker_version_tests.py $(KAFKA_VERSION)
CI=true ./broker_version_tests.py $(KAFKA_VERSION)

# Run full test-suite with a clean release build
pristine-full:
Expand Down

0 comments on commit e625381

Please sign in to comment.