Skip to content

Commit e9fd8e6

Browse files
committed
Fix longevity test runs
Problem: Running longevity test mistakenly runs all other NFRs make start-longevity-test and make stop-longevity-test mistakenly executes all NFRs. Only longevity test must run. Solution: Problem was introduced in 8671fb7 revert the affected change. Testing: - Ran make start-longevity-test and make stop-longevity-test successfully. CLOSES - #2064
1 parent d943b50 commit e9fd8e6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@ nfr-test: ## Run the NFR tests on a GCP VM
100100
NFR=true bash scripts/run-tests-gcp-vm.sh
101101

102102
.PHONY: start-longevity-test
103-
start-longevity-test: START_LONGEVITY=true
104-
start-longevity-test: nfr-test ## Start the longevity test to run for 4 days in GKE
103+
start-longevity-test: ## Start the longevity test to run for 4 days in GKE
104+
START_LONGEVITY=true $(MAKE) nfr-test
105105

106106
.PHONY: stop-longevity-test
107-
stop-longevity-test: STOP_LONGEVITY=true
108-
stop-longevity-test: nfr-test ## Stop the longevity test and collects results
107+
stop-longevity-test: ## Stop the longevity test and collects results
108+
STOP_LONGEVITY=true $(MAKE) nfr-test
109109

110110
.PHONY: .vm-nfr-test
111111
.vm-nfr-test: ## Runs the NFR tests on the GCP VM (called by `nfr-test`)

0 commit comments

Comments
 (0)