author | Patrick Mezard <pmezard@gmail.com> |
Sun, 26 Apr 2009 19:39:15 +0200 | |
changeset 8213 | ac9c4049fd29 |
parent 8212 | bf795c34c63d |
child 8214 | a2af1d92b913 |
tests/hghave | file | annotate | diff | comparison | revisions |
--- a/tests/hghave Sun Apr 26 19:26:22 2009 +0200 +++ b/tests/hghave Sun Apr 26 19:39:15 2009 +0200 @@ -18,7 +18,11 @@ r = re.compile(regexp) fh = os.popen(cmd) s = fh.read() - ret = fh.close() + try: + ret = fh.close() + except IOError: + # Happen in Windows test environment + ret = 1 return (ignorestatus or ret is None) and r.search(s) def has_baz():