-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix #16576: honor matrix in testament by making such tests non joinable #16577
fix #16576: honor matrix in testament by making such tests non joinable #16577
Conversation
7292bc0
to
55732af
Compare
0888475
to
82a8f14
Compare
@@ -656,7 +660,7 @@ proc runJoinedTest(r: var TResults, cat: Category, testsDir: string) = | |||
writeFile(megatestFile, megatest) | |||
|
|||
let root = getCurrentDir() | |||
let args = ["c", "--nimCache:" & outDir, "-d:testing", "--listCmd", "--path:" & root, megatestFile] | |||
let args = ["c", "--nimCache:" & outDir, "-d:testing", "-d:nimMegatest", "--listCmd", "--path:" & root, megatestFile] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So joinable tests will have nimMegatest
defined?
Please add docs for it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's only meant for testing correctness of logic of whether a test is joined, but sure, tracking this here timotheecour#64 (comment)
…n joinable (nim-lang#16577) * refs nim-lang#16576: honor matrix in testament by making such tests non joinable * add tests + misc fixes * fix test for i386 with -d:danger
…n joinable (nim-lang#16577) * refs nim-lang#16576: honor matrix in testament by making such tests non joinable * add tests + misc fixes * fix test for i386 with -d:danger
matrix
spec #16576matrix
in spec should prevent test from joining megatest #16340