Skip to content
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

Closed
wants to merge 5 commits into from

Conversation

brson
Copy link
Contributor

@brson brson commented Nov 8, 2012

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.

@brson
Copy link
Contributor Author

brson commented Nov 8, 2012

One of these patches also adds test targets for the syntax crate, which had two bitrotted tests that I removed.

@brson
Copy link
Contributor Author

brson commented Nov 8, 2012

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 std::test to core::private::test.

@brson
Copy link
Contributor Author

brson commented Nov 8, 2012

Fixes #2912

@brson
Copy link
Contributor Author

brson commented Nov 8, 2012

Here are some numbers. the First two show that time for running tests (with make already having run) went down by about 3 minutes. The last two show that time to actually run make, without running tests, went up by nearly 1m30s.

before, make check, prebuilt

real 16m21.570s
user 71m42.569s
sys 2m17.165s

after, make check, prebuilt

real 13m35.560s
user 73m38.548s
sys 2m23.973s

before, make

real 8m6.354s
user 7m49.689s
sys 0m18.841s

after, make

real 9m32.133s
user 9m12.227s
sys 0m21.497s

@brson
Copy link
Contributor Author

brson commented Nov 8, 2012

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
user 4m29.913s
sys 0m8.821s

after, make check-stage1-std, prebuilt but with modifications to std

real 2m30.152s
user 2m24.773s
sys 0m5.524s

@brson
Copy link
Contributor Author

brson commented Nov 8, 2012

This results in massive increases in binary size. core goes from 2.8M to 9.9M

@brson
Copy link
Contributor Author

brson commented Nov 14, 2012

I merged the independently useful commits. Shelving this idea for now.

@brson brson closed this Nov 14, 2012
RalfJung pushed a commit to RalfJung/rust that referenced this pull request Nov 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant