mirror of
https://github.com/nim-lang/Nim.git
synced 2026-07-18 23:11:36 +00:00
Implement .nimble-link files in the compiler and add tests for them.
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
../../simplePkgs/pkgA-0.1.0/pkgA.nimble
|
||||
../../simplePkgs/pkgA-0.1.0/
|
||||
@@ -0,0 +1,2 @@
|
||||
../../simplePkgs/pkgB-#head/pkgB.nimble
|
||||
../../simplePkgs/pkgB-#head/
|
||||
@@ -0,0 +1,2 @@
|
||||
../../simplePkgs/pkgB-0.1.0/pkgB.nimble
|
||||
../../simplePkgs/pkgB-0.1.0/
|
||||
9
tests/nimble/tnimblepathlink.nim
Normal file
9
tests/nimble/tnimblepathlink.nim
Normal file
@@ -0,0 +1,9 @@
|
||||
discard """
|
||||
action: run
|
||||
cmd: "nim $target --nimblePath:$fileDir/nimbleDir/linkedPkgs $options $file"
|
||||
"""
|
||||
import pkgA/module as A
|
||||
import pkgB/module as B
|
||||
|
||||
doAssert pkgATest() == 1, "Simple linked pkgA-0.1.0 wasn't added to path correctly."
|
||||
doAssert pkgBTest() == 0xDEADBEEF, "linked pkgB-#head wasn't picked over pkgB-0.1.0"
|
||||
@@ -80,7 +80,6 @@ proc callCompiler(cmdTemplate, filename, options: string,
|
||||
let c = parseCmdLine(cmdTemplate % ["target", targetToCmd[target],
|
||||
"options", options, "file", filename.quoteShell,
|
||||
"filedir", filename.getFileDir()])
|
||||
echo(c)
|
||||
var p = startProcess(command=c[0], args=c[1.. ^1],
|
||||
options={poStdErrToStdOut, poUsePath})
|
||||
let outp = p.outputStream
|
||||
|
||||
Reference in New Issue
Block a user