Implement .nimble-link files in the compiler and add tests for them.

This commit is contained in:
Dominik Picheta
2017-09-02 15:28:25 +01:00
parent 9b465a2361
commit 90fa64501f
6 changed files with 29 additions and 4 deletions

View File

@@ -0,0 +1,2 @@
../../simplePkgs/pkgA-0.1.0/pkgA.nimble
../../simplePkgs/pkgA-0.1.0/

View File

@@ -0,0 +1,2 @@
../../simplePkgs/pkgB-#head/pkgB.nimble
../../simplePkgs/pkgB-#head/

View File

@@ -0,0 +1,2 @@
../../simplePkgs/pkgB-0.1.0/pkgB.nimble
../../simplePkgs/pkgB-0.1.0/

View 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"

View File

@@ -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