blob: eeed9240d0d8549a1db6c4cae96c63ddb914d2fc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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: Process
when defined(android):
process = startProcess("/system/bin/env", "/system/bin", ["true"])
else:
process = startProcess("/usr/bin/env", "/usr/bin", ["true"])
let dir2 = getCurrentDir()
discard process.waitForExit()
process.close()
doAssert(dir1 == dir2, $dir1 & " != " & $dir2)
|