mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
17 lines
393 B
Nim
17 lines
393 B
Nim
discard """
|
|
file: "tworkingdir.nim"
|
|
output: ""
|
|
"""
|
|
|
|
import osproc, os
|
|
when defined(windows):
|
|
# Windows don't have this issue, so we won't test it.
|
|
discard
|
|
else:
|
|
let dir1 = getCurrentDir()
|
|
var process = startProcess("/usr/bin/env", "/usr/bin", ["true"])
|
|
let dir2 = getCurrentDir()
|
|
discard process.waitForExit()
|
|
process.close()
|
|
doAssert(dir1 == dir2, $dir1 & " != " & $dir2)
|