-
Notifications
You must be signed in to change notification settings - Fork 107
Do not run "check-runtimes" if "check-all" will be also be run #472
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
base: main
Are you sure you want to change the base?
Conversation
For a long time, at least since llvm/llvm-project@f39a971, the runtimes tests have been part of check-all. I only noticed this the other day when our bot failed the same test twice. https://lab.llvm.org/buildbot/#/builders/161/builds/6483 The same thing happened on some ppc bots: https://lab.llvm.org/buildbot/#/builders/145/builds/7641 https://lab.llvm.org/buildbot/#/builders/95/builds/14342 This is because they run the targets separately: ninja check-all ninja check-runtimes So I have removed the check-runtimes target from these. clang-ppc64le-linux-multistage didn't run the test twice: https://lab.llvm.org/buildbot/#/builders/76/builds/10353 (twice per stage that is) Because it runs the tests as: ninja check-all check-runtimes And ninja knows that one is part of the other. I've removed check-runtimes from that bot anyway, just for clarity. The tests will still be run as part of check-all.
Emailed the PowerPC folks to get their feedback. |
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.
LGTM
On a side note can you confirm if we are running check flang-rt as part of check-all for flang bots. |
We are. clang-aarch64-sve-vla for example:
|
IIRC there used to be a historical bug that this worked around, where some of the compiler-rt tests weren't run under check-all, but I don't think that is even working anymore as I don't see the edit: created a separate issue to track the builtins problem llvm/llvm-project#144090, I think that's a separate problem |
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.
LGTM
I'll hold off on landing this until we at least have ideas about fixing builtins. The extra testing isn't taking that much time and is better than losing coverage. |
For a long time, at least since llvm/llvm-project@f39a971, the runtimes tests have been part of check-all.
I only noticed this the other day when our bot failed the same test twice.
https://lab.llvm.org/buildbot/#/builders/161/builds/6483
The same thing happened on some ppc bots:
https://lab.llvm.org/buildbot/#/builders/145/builds/7641 https://lab.llvm.org/buildbot/#/builders/95/builds/14342
This is because they run the targets separately:
ninja check-all
ninja check-runtimes
So I have removed the check-runtimes target from these.
clang-ppc64le-linux-multistage didn't run the test twice: https://lab.llvm.org/buildbot/#/builders/76/builds/10353
(twice per stage that is)
Because it runs the tests as: ninja check-all check-runtimes
And ninja knows that one is part of the other.
I've removed check-runtimes from that bot anyway, just for clarity. The tests will still be run as part of check-all.