From a3dd9712eca5e99e2c0aeb7abab147bd799b67fc Mon Sep 17 00:00:00 2001 From: Quanzheng Long Date: Sun, 8 Jan 2023 22:38:16 -0800 Subject: [PATCH] Fix stress test flag in Makefile --- .gitignore | 3 ++- Makefile | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 91ef7a0c..b600b5f9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -iwf-server \ No newline at end of file +iwf-server +test.log \ No newline at end of file diff --git a/Makefile b/Makefile index 0c880bb8..9ed3fa97 100644 --- a/Makefile +++ b/Makefile @@ -167,16 +167,16 @@ integTestsNoSearch: $Q go test -v ./integ -search=false stressTestsWithSearch: - $Q go test -v ./integ -repeat=10 intervalMs=100 -searchWaitMs=100 + $Q go test -v ./integ -repeat=10 -intervalMs=100 -searchWaitMs=100 | tee test.log # TODO https://github.com/indeedeng/iwf/issues/134 stressTestsNoSearch: - $Q go test -v ./integ -repeat=10 intervalMs=100 -search=false + $Q go test -v ./integ -repeat=10 -search=false | tee test.log stressTestsCadenceNoSearch: - $Q go test -v ./integ -repeat=10 -temporal=false intervalMs=100 -search=false + $Q go test -v ./integ -repeat=10 -temporal=false -search=false | tee test.log stressTestsTemporalNoSearch: - $Q go test -v ./integ -repeat=10 -cadence=false intervalMs=100 -search=false + $Q go test -v ./integ -repeat=10 -cadence=false -search=false | tee test.log help: @# print help first, so it's visible