Mercurial > hg
diff tests/test-revset2.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 | 4fe8d1f077b8 |
children | 7b35209ba1a7 |
line wrap: on
line diff
--- a/tests/test-revset2.t Tue Sep 18 22:40:03 2018 -0400 +++ b/tests/test-revset2.t Tue Sep 18 23:47:21 2018 -0400 @@ -413,14 +413,14 @@ test that chained `or` operations never eat up stack (issue4624) (uses `0:1` instead of `0` to avoid future optimization of trivial revisions) - $ hg log -T '{rev}\n' -r `$PYTHON -c "print '+'.join(['0:1'] * 500)"` + $ hg log -T '{rev}\n' -r `"$PYTHON" -c "print '+'.join(['0:1'] * 500)"` 0 1 test that repeated `-r` options never eat up stack (issue4565) (uses `-r 0::1` to avoid possible optimization at old-style parser) - $ hg log -T '{rev}\n' `$PYTHON -c "for i in range(500): print '-r 0::1 ',"` + $ hg log -T '{rev}\n' `"$PYTHON" -c "for i in range(500): print '-r 0::1 ',"` 0 1 @@ -1527,7 +1527,7 @@ $ hg init problematicencoding $ cd problematicencoding - $ $PYTHON > setup.sh <<EOF + $ "$PYTHON" > setup.sh <<EOF > print u''' > echo a > text > hg add text @@ -1543,7 +1543,7 @@ $ sh < setup.sh test in problematic encoding - $ $PYTHON > test.sh <<EOF + $ "$PYTHON" > test.sh <<EOF > print u''' > hg --encoding cp932 log --template '{rev}\\n' -r 'author(\u30A2)' > echo ====