-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Change the way unit tests are built and run #3939
Conversation
This will be needed to turn core's unit tests into self tests
One of these patches also adds test targets for the syntax crate, which had two bitrotted tests that I removed. |
Oh, as a side benefit this removes the wierd testing situation around core that makes using TLS and defining lang items difficult. Required moving just three type definitions from |
Fixes #2912 |
Here are some numbers. the First two show that time for running tests (with before, make check, prebuilt real 16m21.570s after, make check, prebuilt real 13m35.560s before, make real 8m6.354s after, make real 9m32.133s |
Here are some better numbers. This is a common development scenario, where you've made a change to std and want to test it. It takes about half as long now since as soon as std is built it can be tested. before, make check-stage1-std, prebuilt but with modifications to std real 5m11.610s after, make check-stage1-std, prebuilt but with modifications to std real 2m30.152s |
This results in massive increases in binary size. core goes from 2.8M to 9.9M |
I merged the independently useful commits. Shelving this idea for now. |
Implement blocking eventfd
r? @graydon
This series changes the build such that libraries are not completely rebuilt when testing. Instead, the tests are built into the libraries, and driver.rs is modified to run the tests directly out of them. It should make cycle times faster.
This will add some binary size to the libraries, but I figure we can have a 'release mode' some day that doesn't build them. It will also slightly increase the normal, non-testing, build times.
To make this work I modified
rustc::front::test
to fold in the test modifications any time the 'test' cfg is active, allowing the test modifications to be performed on libraries in addition to executables (previously this was only done with the--test
flag, which turns on both--cfg test
and--bin
).Measurements forthcoming.