From 40506cbea4c655a229ac06f6d61fac7a5df2771a Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Sat, 11 Feb 2017 09:30:12 -0800 Subject: [PATCH] test-lib-main.sh: allow --xtrace long option name for -x The "-x" option does a "set -x" which is also known by the same name "set -o xtrace". Therefore accept --xtrace as the long option name for "-x". Signed-off-by: Kyle J. McKay --- t/test-lib-main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/test-lib-main.sh b/t/test-lib-main.sh index aa132d4..85d5427 100644 --- a/t/test-lib-main.sh +++ b/t/test-lib-main.sh @@ -938,7 +938,7 @@ do --no-chain-lint) TESTLIB_TEST_CHAIN_LINT=0 shift ;; - -x) + -x|--x|--xt|--xtr|--xtra|--xtrac|--xtrace) trace=t verbose=t shift ;; -- 2.11.4.GIT