From: Jason S. Ninneman Date: Tue, 6 Jun 2017 02:21:08 +0000 (-0700) Subject: Alphabetically sort the test file list. X-Git-Tag: 1.1~618 X-Git-Url: https://jxself.org/git/?p=open-adventure.git;a=commitdiff_plain;h=b2c774afeb327f66e47688e469a411e65fa45017 Alphabetically sort the test file list. This ensures that appropriately-named tests run in sequence. E.g., test.1.log, test.2.log, etc. --- diff --git a/tests/Makefile b/tests/Makefile index 16a1d54..81aa23b 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -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"; \