Merge branch 'master' of github.com:status-im/nim-libp2p
This commit is contained in:
commit
39cc02232d
|
@ -11,9 +11,12 @@ requires "nim > 0.18.0",
|
||||||
"nimcrypto >= 0.3.9",
|
"nimcrypto >= 0.3.9",
|
||||||
"chronos"
|
"chronos"
|
||||||
|
|
||||||
import ospaths, strutils, distros
|
proc runTest(filename: string) =
|
||||||
|
exec "nim c -r tests/" & filename
|
||||||
|
rmFile "tests/" & filename
|
||||||
|
|
||||||
task test, "Runs the test suite":
|
task test, "Runs the test suite":
|
||||||
exec "nim c -r " & ("tests" / "testnative.nim")
|
runTest "testnative"
|
||||||
if not detectOs(Windows):
|
when not defined(windows):
|
||||||
exec "nim c -r " & ("tests" / "testdaemon.nim")
|
runTest "testdaemon"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue