Skip to content

Commit

Permalink
Use ls instead of $(wildcard) to list test files so they're sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
leonerd committed Sep 22, 2015
1 parent ada4e3a commit 2547c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ t/harness: t/harness.lo $(LIBRARY)

.PHONY: test
test: $(LIBRARY) t/harness
for T in $(wildcard t/[0-9]*.test); do echo "** $$T **"; perl t/run-test.pl $$T $(if $(VALGRIND),--valgrind) || exit 1; done
for T in `ls t/[0-9]*.test`; do echo "** $$T **"; perl t/run-test.pl $$T $(if $(VALGRIND),--valgrind) || exit 1; done

.PHONY: clean
clean:
Expand Down

0 comments on commit 2547c25

Please sign in to comment.