build-aux/progtest-runner: Deterministically concatenate files by name

master
Mike Gerwitz 2021-06-09 16:10:52 -04:00
parent 645c4da541
commit 416676f1ab
2 changed files with 6 additions and 1 deletions

View File

@ -39,6 +39,11 @@ Core
within the given context, and proper precautions are taken (as many
templates already do today).
Miscellaneous
-------------
- `build-aux/progtest-runner` will now deterministically concatenate files
based on name rather than some unspecified order.
v17.9.0 (2021-05-27)
====================

View File

@ -32,7 +32,7 @@ shift
for supplier in "$@"; do
base=$( basename "$supplier" .xml )
path_suppliers=$( dirname "$supplier" )
tests=$( find -L "$path_tests"/"$base"/ -name '*.yml' )
tests=$( find -L "$path_tests"/"$base"/ -name '*.yml' | LC_ALL=c sort )
echo
echo "$path_suppliers/$base"