From effb8dad3f3ba2f9d743ff883e9f446f9ae75dca Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Mon, 13 Jul 2026 23:57:21 -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 cdfb0ec..625bac8 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,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)"