From a89c420049c8e29c30dea4b95b87a2633ce57cf1 Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Mon, 13 Jul 2026 23:57:16 -0400 Subject: [PATCH] Shuffle test order Randomizing test order surfaces hidden dependencies between tests. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3345bea..3628c45 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ EXAMPLES_BINARIES := $(addprefix $(BUILD_DIR)/,$(EXAMPLES)) test: unit-tests examples unit-tests: $(tests_binary) - $^ --exclude=integration --sequential + $^ --exclude=integration --sequential --shuffle test-one: $(tests_binary) $^ --only="$(t)"