changeset 8213 | ac9c4049fd29 |
parent 8127 | 17ab4dab50a6 |
child 8809 | 6fce36336e42 |
--- 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():