From: Simon Glass Date: Sat, 6 Aug 2022 23:51:55 +0000 (-0600) Subject: test: Refactor arg parsing for the run script X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=f6e6022ff1b13260ce60123dc6b2ecc369c0234f;p=u-boot.git test: Refactor arg parsing for the run script Tidy up this code a little. Also use '-k' consistently, since -m is more limited in what it can accept. Signed-off-by: Simon Glass --- diff --git a/test/run b/test/run index 869406cd8d..0c8aeb5b0a 100755 --- a/test/run +++ b/test/run @@ -13,9 +13,12 @@ run_test() { [ $? -ne 0 ] && failures=$((failures+1)) } -# SKip slow tests if requested -[ "$1" == "quick" ] && mark_expr="not slow" -[ "$1" == "quick" ] && skip=--skip-net-tests +# Select test attributes +if [ "$1" = "quick" ]; then + mark_expr="not slow" + skip=--skip-net-tests +fi + [ "$1" == "tools" ] && tools_only=y failures=0 @@ -23,7 +26,7 @@ failures=0 if [ -z "$tools_only" ]; then # Run all tests that the standard sandbox build can support run_test "sandbox" ./test/py/test.py --bd sandbox --build \ - -m "${mark_expr}" + -k "${mark_expr}" fi # Run tests which require sandbox_spl