mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
run the C test too
This commit is contained in:
@@ -147,7 +147,7 @@ proc longGCTests(r: var TResults, cat: Category, options: string) =
|
||||
var c = initResults()
|
||||
# According to ioTests, this should compile the file
|
||||
testNoSpec c, makeTest("tests/realtimeGC/shared", options, cat, actionCompile)
|
||||
# testC r, makeTest("tests/realtimeGC/cmain", cOptions, cat, actionRun)
|
||||
testC r, makeTest("tests/realtimeGC/cmain", cOptions, cat, actionRun)
|
||||
testSpec r, makeTest("tests/realtimeGC/nmain", options & "--threads: on", cat, actionRun)
|
||||
|
||||
# ------------------------- threading tests -----------------------------------
|
||||
|
||||
@@ -93,7 +93,7 @@ proc callCCompiler(cmdTemplate, filename, options: string,
|
||||
target: TTarget): TSpec =
|
||||
let c = parseCmdLine(cmdTemplate % ["target", targetToCmd[target],
|
||||
"options", options, "file", filename.quoteShell])
|
||||
var p = startProcess(command="gcc", args=c[4.. ^1],
|
||||
var p = startProcess(command="gcc", args=c[5.. ^1],
|
||||
options={poStdErrToStdOut, poUsePath})
|
||||
let outp = p.outputStream
|
||||
var x = newStringOfCap(120)
|
||||
|
||||
Reference in New Issue
Block a user