Skip to content

Commit e0beb15

Browse files
committed
ci: enable an async test using cass_future_wait_timed
This test needs to be run without valgrind, as it causes the client request timeouts to appear.
1 parent 1d4e2f5 commit e0beb15

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,8 @@ run-test-integration-scylla: build-integration-test-bin
188188
endif
189189
@echo "Running integration tests on scylla ${SCYLLA_VERSION}"
190190
valgrind --error-exitcode=123 --leak-check=full --errors-for-leak-kinds=definite build/cassandra-integration-tests --scylla --version=${SCYLLA_VERSION} --category=CASSANDRA --verbose=ccm --gtest_filter="${SCYLLA_TEST_FILTER}"
191+
@echo "Running timeout sensitive tests on scylla ${SCYLLA_VERSION}"
192+
build/cassandra-integration-tests --scylla --version=${SCYLLA_VERSION} --category=CASSANDRA --verbose=ccm --gtest_filter="AsyncTests.Integration_Cassandra_Simple"
191193

192194
run-test-integration-cassandra: prepare-integration-test download-ccm-cassandra-image install-java8-if-missing
193195
ifdef DONT_REBUILD_INTEGRATION_BIN
@@ -197,6 +199,8 @@ run-test-integration-cassandra: build-integration-test-bin
197199
endif
198200
@echo "Running integration tests on cassandra ${CASSANDRA_VERSION}"
199201
valgrind --error-exitcode=123 --leak-check=full --errors-for-leak-kinds=definite build/cassandra-integration-tests --version=${CASSANDRA_VERSION} --category=CASSANDRA --verbose=ccm --gtest_filter="${CASSANDRA_TEST_FILTER}"
202+
@echo "Running timeout sensitive tests on cassandra ${CASSANDRA_VERSION}"
203+
build/cassandra-integration-tests --version=${CASSANDRA_VERSION} --category=CASSANDRA --verbose=ccm --gtest_filter="AsyncTests.Integration_Cassandra_Simple"
200204

201205
run-test-unit: install-cargo-if-missing _update-rust-tooling
202206
@cd ${CURRENT_DIR}/scylla-rust-wrapper; cargo test

0 commit comments

Comments
 (0)