-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Ability to run non-toolstate-dependent tests only #84626
Comments
It... doesn't fail? Or at least, the intent is that it should succeed, just printing out some failed tests prior to doing so. It may be necessary to configure a toolstate file for this to happen, I'm not sure. |
I think a "only build/test what is guaranteed to work" is likely somewhat duplicating #74709, in some sense. |
If a tool like @Manishearth Is there some scenario you are running into where
There is no simple answer to that question, since there are dozens of configurations and different kinds of builders running different kinds of tests. |
@durin42 was hitting this whilst trying to test Rust against LLVM trunk (https://buildkite.com/llvm-project/rust-llvm-integrate-prototype). I don't have an example of a failing build offhand, our quickfix was to select the testsuites to run manually. I believe the failure was caused by the lack of rustfmt though. |
If I do a bare
this continues for a long time, and then
with an exit code of 1. So I'm not sure it's even |
Those look like remnants from when stdarch lived in a different location. It should now live in |
Ugh, I can't figure out what I was seeing. Maybe it's been fixed, maybe I misremembered. |
Gonna close this for now but we can reopen if you see this again @durin42? You can try using |
Currently if you want to run the full Rust testsuite, you have to run
./x.py test
.However, this fails when e.g.
rustfmt
is broken. We're hoping to fix that in #82208 , but ideally it would be possible to askx.py
to run all the tests that Rust CI guarantees will pass.(I may also be missing a config option)
Thoughts?
The text was updated successfully, but these errors were encountered: