summary refs log tree commit diff stats
path: root/lib/pure/os.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pure/os.nim')
-rw-r--r--lib/pure/os.nim10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/pure/os.nim b/lib/pure/os.nim
index 878444e74..e88c3c6e8 100644
--- a/lib/pure/os.nim
+++ b/lib/pure/os.nim
@@ -1252,9 +1252,10 @@ proc normalizePath*(path: var string) {.rtl, extern: "nos$1", tags: [], noNimScr
   ## * `normalizedPath proc <#normalizedPath,string>`_ for a version which returns
   ##   a new string
   runnableExamples:
-    var a = "a///b//..//c///d"
-    a.normalizePath()
-    assert a == "a/c/d"
+    when defined(posix):
+      var a = "a///b//..//c///d"
+      a.normalizePath()
+      assert a == "a/c/d"
 
   path = pathnorm.normalizePath(path)
   when false:
@@ -1291,7 +1292,8 @@ proc normalizedPath*(path: string): string {.rtl, extern: "nos$1", tags: [], noN
   ## * `absolutePath proc <#absolutePath,string>`_
   ## * `normalizePath proc <#normalizePath,string>`_ for the in-place version
   runnableExamples:
-    assert normalizedPath("a///b//..//c///d") == "a/c/d"
+    when defined(posix):
+      assert normalizedPath("a///b//..//c///d") == "a/c/d"
   result = pathnorm.normalizePath(path)
 
 when defined(Windows) and not weirdTarget: