File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ do_test() {
3939 set -- " ${TEST_DIR} /${1} "
4040 fi
4141
42- set +e
42+ set +e +x
4343 echo " Test command: ${@ } " >&2
4444
4545 " ${@ } "
@@ -49,7 +49,7 @@ do_test() {
4949}
5050
5151is_preferred () {
52- set +e
52+ set +e +x
5353
5454 while read l; do
5555 case " ${l} " in
@@ -62,12 +62,12 @@ is_preferred() {
6262 esac
6363 done < tests/etc/python-exec/python-exec.conf
6464
65- set -e
65+ set -e -x
6666 return 1
6767}
6868
6969is_disabled () {
70- set +e
70+ set +e +x
7171
7272 while read l; do
7373 case " ${l} " in
@@ -80,13 +80,13 @@ is_disabled() {
8080 esac
8181 done < tests/etc/python-exec/python-exec.conf
8282
83- set -e
83+ set -e -x
8484 return 1
8585}
8686
8787# catch all failures
8888trap ' exit 99' EXIT
89- set -e
89+ set -e -x
9090
9191rm -f " ${TEST_DIR} /${TEST_TMP} " * " ${TEST_DIR} " /* /" ${TEST_TMP} " *
9292ln -s python-exec2 " ${TEST_DIR} /${TEST_TMP} "
You can’t perform that action at this time.
0 commit comments