Mercurial > hg
comparison tests/test-run-tests.t @ 47564:57bdecf4322c
test-run-tests: add missing backslash for Windows
Differential Revision: https://phab.mercurial-scm.org/D11004
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Wed, 07 Jul 2021 15:09:26 +0200 |
parents | 23f5ed6dbcb1 |
children | da497189a93a |
comparison
equal
deleted
inserted
replaced
47563:dc3f7aa15423 | 47564:57bdecf4322c |
---|---|
1404 > - $TESTDIR, in which test-run-tests.t is placed | 1404 > - $TESTDIR, in which test-run-tests.t is placed |
1405 > - \$TESTDIR, in which test-runtestdir.t is placed (expanded at runtime) | 1405 > - \$TESTDIR, in which test-runtestdir.t is placed (expanded at runtime) |
1406 > - \$RUNTESTDIR, in which run-tests.py is placed (expanded at runtime) | 1406 > - \$RUNTESTDIR, in which run-tests.py is placed (expanded at runtime) |
1407 > | 1407 > |
1408 > #if windows | 1408 > #if windows |
1409 > $ test "\$TESTDIR" = "$TESTTMP\anothertests" | 1409 > $ test "\$TESTDIR" = "$TESTTMP\\anothertests" |
1410 > #else | 1410 > #else |
1411 > $ test "\$TESTDIR" = "$TESTTMP"/anothertests | 1411 > $ test "\$TESTDIR" = "$TESTTMP"/anothertests |
1412 > #endif | 1412 > #endif |
1413 > If this prints a path, that means RUNTESTDIR didn't equal | 1413 > If this prints a path, that means RUNTESTDIR didn't equal |
1414 > TESTDIR as it should have. | 1414 > TESTDIR as it should have. |