testament --megatest:off now makes tests non-joinable so that they all run (#18787)

This commit is contained in:
Timothee Cour
2021-09-02 22:15:08 -07:00
committed by GitHub
parent f46569bafd
commit 64165f03fc
2 changed files with 2 additions and 2 deletions

View File

@@ -541,7 +541,7 @@ proc processSingleTest(r: var TResults, cat: Category, options, test: string, ta
proc isJoinableSpec(spec: TSpec): bool =
# xxx simplify implementation using a whitelist of fields that are allowed to be
# set to non-default values (use `fieldPairs`), to avoid issues like bug #16576.
result = not spec.sortoutput and
result = useMegatest and not spec.sortoutput and
spec.action == actionRun and
not fileExists(spec.file.changeFileExt("cfg")) and
not fileExists(spec.file.changeFileExt("nims")) and

View File

@@ -28,6 +28,7 @@ var useColors = true
var backendLogging = true
var simulate = false
var optVerbose = false
var useMegatest = true
proc verboseCmd(cmd: string) =
if optVerbose:
@@ -645,7 +646,6 @@ proc main() =
var targetsStr = ""
var isMainProcess = true
var skipFrom = ""
var useMegatest = true
var p = initOptParser()
p.next()