hghave: detect support for EOL in paths.
authorPatrick Mezard <pmezard@gmail.com>
Mon, 06 Aug 2007 09:57:23 +0200
changeset 5074 e86788af599a
parent 5073 4cd52978e188
child 5075 2184378b20b5
hghave: detect support for EOL in paths.
tests/hghave
--- a/tests/hghave	Mon Aug 06 10:38:07 2007 +0200
+++ b/tests/hghave	Mon Aug 06 09:57:23 2007 +0200
@@ -23,10 +23,20 @@
     finally:
         os.remove(path)
 
+def has_eol_in_paths():
+    try:
+        fd, path = tempfile.mkstemp(suffix='\n\r')
+        os.close(fd)
+        os.remove(path)
+        return True
+    except:
+        return False
+
 checks = {
     "symlink": (has_symlink, "symbolic links"),
     "fifo": (has_fifo, "named pipes"),
     "execbit": (has_executablebit, "executable bit"),
+    "eol-in-paths": (has_eol_in_paths, "end-of-lines in paths"),
 }
 
 def list_features():