From d254a1182be580a60f41365396992347b20e6f9f Mon Sep 17 00:00:00 2001 From: Philippe Gerum Date: Sun, 13 Dec 2020 16:16:59 +0100 Subject: [PATCH] utils: evl: alpha-sort test list for all ops Having a predictable sequence for testing and listing is handy. In addition, ensure that shim tests are listed last. Signed-off-by: Philippe Gerum --- utils/evl-test | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/evl-test b/utils/evl-test index 811a18a..ac7a051 100644 --- a/utils/evl-test +++ b/utils/evl-test @@ -51,7 +51,8 @@ for t in "$@"; do done if test -z "$test_list"; then - test_list=$(find $EVL_TESTDIR -type f) + test_list="$(find $EVL_TESTDIR -type f -maxdepth 1 | sort)" + test_list="$test_list $(find $EVL_TESTDIR/eshi -type f | sort)" if test -z "$test_list"; then echo >&2 "$EVL_TESTDIR is empty - broken installation?" exit 2