Mercurial > public > mercurial-scm > hg-stable
diff tests/test-run-tests.t @ 26158:342ab95a1f4b
run-tests: use $HGTEST_RUN_TESTS_PURE
test-run-tests and test-hghave call run-tests;
if you don't have a working build environment, and you are trying
to use --pure, then if they don't use --pure or --with-hg,
they'll break.
author | timeless@mozdev.org |
---|---|
date | Wed, 02 Sep 2015 15:19:05 -0400 |
parents | bad09bd22b6a |
children | 41436beaf463 |
line wrap: on
line diff
--- a/tests/test-run-tests.t Wed Sep 02 15:12:08 2015 -0400 +++ b/tests/test-run-tests.t Wed Sep 02 15:19:05 2015 -0400 @@ -580,7 +580,7 @@ > $ echo foo > foo > EOF - $ run-tests.py test-hghave.t + $ run-tests.py $HGTEST_RUN_TESTS_PURE test-hghave.t . # Ran 1 tests, 0 skipped, 0 warned, 0 failed. @@ -599,7 +599,7 @@ > # > # check-code - a style and portability checker for Mercurial > EOF - $ run-tests.py test-runtestdir.t + $ run-tests.py $HGTEST_RUN_TESTS_PURE test-runtestdir.t . # Ran 1 tests, 0 skipped, 0 warned, 0 failed. @@ -616,7 +616,7 @@ > $ custom-command.sh > hello world > EOF - $ run-tests.py test-testdir-path.t + $ run-tests.py $HGTEST_RUN_TESTS_PURE test-testdir-path.t . # Ran 1 tests, 0 skipped, 0 warned, 0 failed. @@ -628,10 +628,10 @@ > $ echo pass > pass > EOF - $ run-tests.py test-very-slow-test.t + $ run-tests.py $HGTEST_RUN_TESTS_PURE test-very-slow-test.t s Skipped test-very-slow-test.t: skipped # Ran 0 tests, 1 skipped, 0 warned, 0 failed. - $ run-tests.py --allow-slow-tests test-very-slow-test.t + $ run-tests.py $HGTEST_RUN_TESTS_PURE --allow-slow-tests test-very-slow-test.t . # Ran 1 tests, 0 skipped, 0 warned, 0 failed.