From 3fa0fec5cfc934b02bba29aa95ff4e4a209da677 Mon Sep 17 00:00:00 2001 From: Jerry Date: Wed, 16 Aug 2023 22:24:09 -0700 Subject: [PATCH] Disable shuffling in unit test (#954) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 68998b40cc..666126b7de 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ ios: @echo "Import \"$(GOBIN)/Geth.framework\" to use the library." test: - $(GOTEST) --timeout 5m -shuffle=on -cover -short -coverprofile=cover.out -covermode=atomic $(TESTALL) + $(GOTEST) --timeout 5m -cover -short -coverprofile=cover.out -covermode=atomic $(TESTALL) test-txpool-race: $(GOTEST) -run=TestPoolMiningDataRaces --timeout 600m -race -v ./core/