From d98794508abc36fcea15e8ee5d547507da9b97ba Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Mon, 13 Jul 2026 23:57:11 -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 efeb282..4752362 100755 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ EXAMPLES_BINARIES := $(addprefix $(BUILD_DIR)/,$(EXAMPLES)) test: unit-tests build-examples unit-tests: $(tests_binary) - $^ --exclude=integration --sequential + $^ --exclude=integration --sequential --shuffle test-one: $(tests_binary) $^ --only="$(t)"