Skip to content

Commit

Permalink
run tests in sorted order (cosmetic)
Browse files Browse the repository at this point in the history
  • Loading branch information
adsr committed Sep 11, 2024
1 parent 8f32163 commit 82450ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fi

$MLE -v

for t in $(find . -mindepth 2 -type f -name 'test_*'); do
for t in $(find . -mindepth 2 -type f -name 'test_*' | sort); do
[ -x "$t" ] || continue
tshort=$(basename $t)
tdir=$(dirname $t)
Expand Down

0 comments on commit 82450ca

Please sign in to comment.