@@ -60,10 +60,6 @@ ifndef CASSANDRA_VERSION
6060	CASSANDRA_VERSION := 3.11.17
6161endif 
6262
63- ifndef  DONT_REBUILD_INTEGRATION_BIN 
64- 	DONT_REBUILD_INTEGRATION_BIN := ${EMPTY}
65- endif 
66- 
6763CURRENT_DIR  := $(dir  $(abspath  $(lastword  $(MAKEFILE_LIST ) ) ) ) 
6864BUILD_DIR  := "${CURRENT_DIR}build"
6965INTEGRATION_TEST_BIN  := ${BUILD_DIR}/cassandra-integration-tests
@@ -171,7 +167,7 @@ download-ccm-cassandra-image: install-ccm-if-missing
171167	@rm -rf /tmp/download-cassandra.ccm
172168
173169run-test-integration-scylla : prepare-integration-test download-ccm-scylla-image
174- ifeq  ( $( DONT_REBUILD_INTEGRATION_BIN ) ,  $( EMPTY ) ) 
170+ ifdef   DONT_REBUILD_INTEGRATION_BIN 
175171run-test-integration-scylla : build-integration-test-bin-if-missing
176172else
177173run-test-integration-scylla : build-integration-test-bin
@@ -180,7 +176,7 @@ endif
180176	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}"
181177
182178run-test-integration-cassandra : prepare-integration-test download-ccm-cassandra-image install-java8-if-missing
183- ifeq  ( $( DONT_REBUILD_INTEGRATION_BIN ) ,  $( EMPTY ) ) 
179+ ifdef   DONT_REBUILD_INTEGRATION_BIN 
184180run-test-integration-cassandra : build-integration-test-bin-if-missing
185181else
186182run-test-integration-cassandra : build-integration-test-bin
0 commit comments