diff options
author | Araq <rumpf_a@web.de> | 2018-12-10 17:27:58 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-12-11 21:23:25 +0100 |
commit | dc604ca762d33532a53ef0656f22ee991c67023e (patch) | |
tree | 8f268445829b1bc377d8b0b940a6692de31f0d7f /testament | |
parent | 34815a469735ef15390b034d4a806c7e69ac49e7 (diff) | |
download | Nim-dc604ca762d33532a53ef0656f22ee991c67023e.tar.gz |
don't run megatest in parallel for better error messages
Diffstat (limited to 'testament')
-rw-r--r-- | testament/categories.nim | 3 | ||||
-rw-r--r-- | testament/tester.nim | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/testament/categories.nim b/testament/categories.nim index 568a13440..d23f3384e 100644 --- a/testament/categories.nim +++ b/testament/categories.nim @@ -499,7 +499,8 @@ 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? diff --git a/testament/tester.nim b/testament/tester.nim index 368c5da6f..29733e45c 100644 --- a/testament/tester.nim +++ b/testament/tester.nim @@ -536,6 +536,8 @@ proc main() = var r = initResults() case action of "all": + processCategory(r, Category"megatest", p.cmdLineRest.string, testsDir, runJoinableTests = false) + var myself = quoteShell(findExe("testament" / "tester")) if targetsStr.len > 0: myself &= " " & quoteShell("--targets:" & targetsStr) |