From d25f67ec12b3b18efb7efb452f46760d0bc29222 Mon Sep 17 00:00:00 2001 From: Michael Matz Date: Fri, 22 Apr 2016 15:57:23 +0200 Subject: [PATCH] Run testcases in sorted order Without sorting they run in whatever order readdir returns, I like it better when the order is reliable (and alphanumeric). --- tests/tests2/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests2/Makefile b/tests/tests2/Makefile index 254fa5ca..d14e5f6d 100644 --- a/tests/tests2/Makefile +++ b/tests/tests2/Makefile @@ -19,7 +19,7 @@ endif TCC = $(TOP)/tcc $(TCCFLAGS) -TESTS = $(patsubst %.c,%.test,$(wildcard *.c)) +TESTS = $(patsubst %.c,%.test,$(sort $(wildcard *.c))) # 34_array_assignment.test -- array assignment is not in C standard SKIP = 34_array_assignment.test -- 2.11.4.GIT