You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@go test$(FUNCTIONAL_TEST_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race | tee -a test.log
282
-
@go test$(FUNCTIONAL_TEST_NDC_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race | tee -a test.log
281
+
@go test$(FUNCTIONAL_TEST_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race -persistenceType=$(PERSISTENCE_TYPE) -persistenceDriver=$(PERSISTENCE_DRIVER)| tee -a test.log
282
+
@go test$(FUNCTIONAL_TEST_NDC_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race -persistenceType=$(PERSISTENCE_TYPE) -persistenceDriver=$(PERSISTENCE_DRIVER)| tee -a test.log
283
283
# Need to run xdc tests with race detector off because of ringpop bug causing data race issue.
284
-
@go test $(FUNCTIONAL_TEST_XDC_ROOT) -timeout=$(TEST_TIMEOUT) $(TEST_TAG) | tee -a test.log
284
+
@go test $(FUNCTIONAL_TEST_XDC_ROOT) -timeout=$(TEST_TIMEOUT) $(TEST_TAG) -persistenceType=$(PERSISTENCE_TYPE) -persistenceDriver=$(PERSISTENCE_DRIVER) | tee -a test.log
@printf $(COLOR)"Run integration tests with fault injection..."
289
-
@go test$(FUNCTIONAL_TEST_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race -PersistenceFaultInjectionRate=0.005 | tee -a test.log
290
-
@go test$(FUNCTIONAL_TEST_NDC_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race -PersistenceFaultInjectionRate=0.005 | tee -a test.log
289
+
@go test$(FUNCTIONAL_TEST_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race -PersistenceFaultInjectionRate=0.005 -persistenceType=$(PERSISTENCE_TYPE) -persistenceDriver=$(PERSISTENCE_DRIVER)| tee -a test.log
290
+
@go test$(FUNCTIONAL_TEST_NDC_ROOT) -timeout=$(TEST_TIMEOUT)$(TEST_TAG) -race -PersistenceFaultInjectionRate=0.005 -persistenceType=$(PERSISTENCE_TYPE) -persistenceDriver=$(PERSISTENCE_DRIVER)| tee -a test.log
291
291
# Need to run xdc tests with race detector off because of ringpop bug causing data race issue.
292
-
@go test $(FUNCTIONAL_TEST_XDC_ROOT) -timeout=$(TEST_TIMEOUT) $(TEST_TAG) -PersistenceFaultInjectionRate=0.005 | tee -a test.log
292
+
@go test $(FUNCTIONAL_TEST_XDC_ROOT) -timeout=$(TEST_TIMEOUT) $(TEST_TAG) -PersistenceFaultInjectionRate=0.005 -persistenceType=$(PERSISTENCE_TYPE) -persistenceDriver=$(PERSISTENCE_DRIVER) | tee -a test.log
0 commit comments