From 435f0d5f8f7fd0a5f26f7e7f2beda464cde3221e Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Thu, 23 Aug 2018 14:08:02 +0200 Subject: [PATCH 1/3] Decrease 'make test_sim_gaia_fast' to 100 blocks --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de5f6956f20b..8dab98616c29 100644 --- a/Makefile +++ b/Makefile @@ -152,7 +152,7 @@ test_sim_gaia_nondeterminism: test_sim_gaia_fast: @echo "Running quick Gaia simulation. This may take several minutes..." - @go test ./cmd/gaia/app -run TestFullGaiaSimulation -SimulationEnabled=true -SimulationNumBlocks=200 -timeout 24h + @go test ./cmd/gaia/app -run TestFullGaiaSimulation -SimulationEnabled=true -SimulationNumBlocks=100 -timeout 24h test_sim_gaia_slow: @echo "Running full Gaia simulation. This may take awhile!" From efa820b8f46084ff0b3dbdf693adec7a3b7a3ac3 Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Thu, 23 Aug 2018 15:14:12 +0200 Subject: [PATCH 2/3] Try printing output instead --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8dab98616c29..d4bd0a718d17 100644 --- a/Makefile +++ b/Makefile @@ -152,7 +152,7 @@ test_sim_gaia_nondeterminism: test_sim_gaia_fast: @echo "Running quick Gaia simulation. This may take several minutes..." - @go test ./cmd/gaia/app -run TestFullGaiaSimulation -SimulationEnabled=true -SimulationNumBlocks=100 -timeout 24h + @go test ./cmd/gaia/app -run TestFullGaiaSimulation -SimulationEnabled=true -SimulationNumBlocks=200 -v -timeout 24h test_sim_gaia_slow: @echo "Running full Gaia simulation. This may take awhile!" From c37ae1d5630ebccccd1f0d6b0e774c315d4f57d1 Mon Sep 17 00:00:00 2001 From: Christopher Goes Date: Thu, 23 Aug 2018 15:25:00 +0200 Subject: [PATCH 3/3] 50 blocks now --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d4bd0a718d17..66d566309288 100644 --- a/Makefile +++ b/Makefile @@ -152,7 +152,7 @@ test_sim_gaia_nondeterminism: test_sim_gaia_fast: @echo "Running quick Gaia simulation. This may take several minutes..." - @go test ./cmd/gaia/app -run TestFullGaiaSimulation -SimulationEnabled=true -SimulationNumBlocks=200 -v -timeout 24h + @go test ./cmd/gaia/app -run TestFullGaiaSimulation -SimulationEnabled=true -SimulationNumBlocks=50 -v -timeout 24h test_sim_gaia_slow: @echo "Running full Gaia simulation. This may take awhile!"