Mercurial > hg-stable
changeset 25859:1619563959b3 stable
tests: disable test of buffer overflow in parsers.c if --pure
It fails with AttributeError and there's no benefit to make it runnable
with pure Python code.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 19 Jul 2015 15:27:28 +0900 |
parents | f8aead51aec0 |
children | 895f04955a49 |
files | tests/hghave.py tests/test-parseindex.t |
diffstat | 2 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/hghave.py Sun Jul 19 18:11:18 2015 +0200 +++ b/tests/hghave.py Sun Jul 19 15:27:28 2015 +0900 @@ -376,3 +376,7 @@ @check("py3k", "running with Python 3.x") def has_py3k(): return 3 == sys.version_info[0] + +@check("pure", "running with pure Python code") +def has_pure(): + return os.environ.get("HGTEST_RUN_TESTS_PURE") == "--pure"
--- a/tests/test-parseindex.t Sun Jul 19 18:11:18 2015 +0200 +++ b/tests/test-parseindex.t Sun Jul 19 15:27:28 2015 +0900 @@ -62,6 +62,8 @@ Test corrupted p1/p2 fields that could cause SEGV at parsers.c: +#if no-pure + $ mkdir invalidparent $ cd invalidparent @@ -118,3 +120,5 @@ find_deepest: parent out of range $ cd .. + +#endif