From b2c774afeb327f66e47688e469a411e65fa45017 Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Mon, 5 Jun 2017 19:21:08 -0700 Subject: [PATCH] Alphabetically sort the test file list. This ensures that appropriately-named tests run in sequence. E.g., test.1.log, test.2.log, etc. --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; \ -- 2.31.1