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:
parent
990be32ac6
commit
b2c774afeb
1 changed files with 1 additions and 1 deletions
|
@ -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"; \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue