Mercurial > hg-stable
changeset 15444:e1f05d7a8c7b
tests: use 'hghave no-windows' to avoid testing reserved file names on windows
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Mon, 07 Nov 2011 03:14:55 +0100 |
parents | a1914d214579 |
children | 7cbb81c47025 |
files | tests/hghave tests/test-add.t tests/test-addremove.t tests/test-hardlinks.t tests/test-init.t tests/test-walk.t |
diffstat | 6 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/hghave Mon Nov 07 03:14:55 2011 +0100 +++ b/tests/hghave Mon Nov 07 03:14:55 2011 +0100 @@ -209,6 +209,9 @@ except ImportError: return False +def has_windows(): + return os.name == 'nt' + checks = { "baz": (has_baz, "GNU Arch baz client"), "bzr": (has_bzr, "Canonical's Bazaar client"), @@ -239,6 +242,7 @@ "symlink": (has_symlink, "symbolic links"), "tla": (has_tla, "GNU Arch tla client"), "unix-permissions": (has_unix_permissions, "unix-style permissions"), + "windows": (has_windows, "Windows"), } def list_features():
--- a/tests/test-add.t Mon Nov 07 03:14:55 2011 +0100 +++ b/tests/test-add.t Mon Nov 07 03:14:55 2011 +0100 @@ -1,3 +1,5 @@ + $ "$TESTDIR/hghave" no-windows || exit 80 + $ hg init a $ cd a $ echo a > a
--- a/tests/test-addremove.t Mon Nov 07 03:14:55 2011 +0100 +++ b/tests/test-addremove.t Mon Nov 07 03:14:55 2011 +0100 @@ -1,3 +1,5 @@ + $ "$TESTDIR/hghave" no-windows || exit 80 + $ hg init rep $ cd rep $ mkdir dir
--- a/tests/test-hardlinks.t Mon Nov 07 03:14:55 2011 +0100 +++ b/tests/test-hardlinks.t Mon Nov 07 03:14:55 2011 +0100 @@ -1,3 +1,5 @@ + $ "$TESTDIR/hghave" no-windows || exit 80 + $ cat > nlinks.py <<EOF > import os, sys > for f in sorted(sys.stdin.readlines()):