Mercurial > hg
diff tests/test-run-tests.t @ 39707:5abc47d4ca6b
tests: quote PYTHON usage
Python3 defaults to installing under "Program Files".
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 18 Sep 2018 23:47:21 -0400 |
parents | 3086a8627b29 |
children | 1039404c5e1d |
line wrap: on
line diff
--- a/tests/test-run-tests.t Tue Sep 18 22:40:03 2018 -0400 +++ b/tests/test-run-tests.t Tue Sep 18 23:47:21 2018 -0400 @@ -6,7 +6,7 @@ Smoke test with install ============ - $ $PYTHON $TESTDIR/run-tests.py $HGTEST_RUN_TESTS_PURE -l + $ "$PYTHON" $TESTDIR/run-tests.py $HGTEST_RUN_TESTS_PURE -l # Ran 0 tests, 0 skipped, 0 failed. @@ -14,14 +14,14 @@ ============= $ rt() > { - > $PYTHON $TESTDIR/run-tests.py --with-hg=`which hg` "$@" + > "$PYTHON" $TESTDIR/run-tests.py --with-hg=`which hg` "$@" > } error paths #if symlink $ ln -s `which true` hg - $ $PYTHON $TESTDIR/run-tests.py --with-hg=./hg + $ "$PYTHON" $TESTDIR/run-tests.py --with-hg=./hg warning: --with-hg should specify an hg script # Ran 0 tests, 0 skipped, 0 failed. @@ -30,7 +30,7 @@ #if execbit $ touch hg - $ $PYTHON $TESTDIR/run-tests.py --with-hg=./hg + $ "$PYTHON" $TESTDIR/run-tests.py --with-hg=./hg usage: run-tests.py [options] [tests] run-tests.py: error: --with-hg must specify an executable hg script [2] @@ -1283,7 +1283,7 @@ Add support for external test formatter ======================================= - $ CUSTOM_TEST_RESULT=basic_test_result $PYTHON $TESTDIR/run-tests.py --with-hg=`which hg` "$@" test-success.t test-failure.t + $ CUSTOM_TEST_RESULT=basic_test_result "$PYTHON" $TESTDIR/run-tests.py --with-hg=`which hg` "$@" test-success.t test-failure.t # Ran 2 tests, 0 skipped, 0 failed. ON_START! <__main__.TestSuite tests=[<__main__.TTest testMethod=test-failure.t>, <__main__.TTest testMethod=test-success.t>]>