diff options
Diffstat (limited to 'testament')
-rw-r--r-- | testament/categories.nim | 5 | ||||
-rw-r--r-- | testament/tester.nim | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index d23f3384e..dac9db57d 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -499,8 +499,7 @@ proc testNimblePackages(r: var TResults, cat: Category, filter: PackageFilter) = # ---------------------------------------------------------------------------- -const AdditionalCategories = ["debugger", "examples", "lib"] -#, "megatest"] +const AdditionalCategories = ["debugger", "examples", "lib", "megatest"] proc `&.?`(a, b: string): string = # candidate for the stdlib? @@ -565,7 +564,7 @@ proc runJoinedTest(r: var TResults, cat: Category, testsDir: string) = echo buf quit("megatest compilation failed") - (buf, exitCode) = execCmdEx2("./megatest", [], {poStdErrToStdOut}, "") + (buf, exitCode) = execCmdEx("./megatest") if exitCode != 0: echo buf quit("megatest execution failed") diff --git a/testament/tester.nim b/testament/tester.nim index 29733e45c..6d9e05aa9 100644 --- a/testament/tester.nim +++ b/testament/tester.nim @@ -536,7 +536,7 @@ proc main() = var r = initResults() case action of "all": - processCategory(r, Category"megatest", p.cmdLineRest.string, testsDir, runJoinableTests = false) + #processCategory(r, Category"megatest", p.cmdLineRest.string, testsDir, runJoinableTests = false) var myself = quoteShell(findExe("testament" / "tester")) if targetsStr.len > 0: |