[PATCH] test-duplicateoptions: ignore inotify

Idan Kamara idankk86 at gmail.com
Wed Jun 29 05:45:37 CDT 2011


# HG changeset patch
# User Idan Kamara <idankk86 at gmail.com>
# Date 1309344275 -10800
# Branch stable
# Node ID 7b09c4cb0b7d1f8d3e8cf84e66f69e918d416d2e
# Parent  1a9256cdf10fbecf721d55ede8aa0b80838326dc
test-duplicateoptions: ignore inotify

When running tests locally, inotify is listed as a disabled extension
even if it wasn't compiled (because the directory is still there),
which causes loading it to fail.

Ignore it in this test as it's not that important.

diff -r 1a9256cdf10f -r 7b09c4cb0b7d tests/test-duplicateoptions.py
--- a/tests/test-duplicateoptions.py	Sat Jun 25 02:30:17 2011 +0200
+++ b/tests/test-duplicateoptions.py	Wed Jun 29 13:44:35 2011 +0300
@@ -1,7 +1,7 @@
 import os
 from mercurial import ui, commands, extensions
 
-ignore = set(['highlight', 'win32text'])
+ignore = set(['highlight', 'win32text', 'inotify'])
 
 if os.name != 'nt':
     ignore.add('win32mbcs')


More information about the Mercurial-devel mailing list