Alphabetically sort the test file list.

This ensures that appropriately-named tests run in sequence. E.g., test.1.log, test.2.log, etc.
This commit is contained in:
Jason S. Ninneman 2017-06-05 19:21:08 -07:00
parent 990be32ac6
commit b2c774afeb

View file

@ -26,7 +26,7 @@ listcheck:
# General regression testing of commands and output; look at the *.log and
# corresponding *.chk files to see which tests this runs.
TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///')
TESTLOADS := $(shell ls -1 *.log | sed '/.log/s///' | sort)
buildregress:
@for file in $(TESTLOADS); do \
echo "Remaking $${file}.chk"; \