From 83cee766a39d97abf3d2d2e3252fe82f7ec4930e Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Mon, 13 Jul 2026 23:57:06 -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 4db5e13..321c603 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)"