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).
master
Michael Matz 2016-04-22 15:57:23 +02:00
parent cdc16d428f
commit d25f67ec12
1 changed files with 1 additions and 1 deletions

View File

@ -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