about summary refs log tree commit diff
path: root/src/lib/test.rs
AgeCommit message (Collapse)AuthorLines
2011-07-29Base test concurrency on the number of scheduler threads.Brian Anderson-13/+7
Ideally we would just spawn every test and collect the results but I'm not entirely comfortable doing that yet for reasons that I'm too tired to remember right now. Urgh.
2011-07-29Refactor std::testBrian Anderson-70/+108
Separate the console output from the running of tests
2011-07-27Don't stop at first test failureBrian Anderson-11/+14
Since compiletest is setting up its own test tasks it needs to configure them the correct way, which means allowing them to leak.
2011-07-27Print a newline before displaying test outputBrian Anderson-1/+1
2011-07-27Don't allow globals or immutable locals to be passed by mut aliasMarijn Haverbeke-2/+2
Closes #747
2011-07-27Fix damage done by the pretty-printerMarijn Haverbeke-1/+1
2011-07-27Reformat for new syntaxMarijn Haverbeke-167/+153
2011-07-26Run compile tests in a way that's safe in a multithreaded environmentBrian Anderson-6/+23
In theory. There's still something leaking but I hope it's no longer due to the test runner doing unsafe things. This is a pretty nasty patch, working around limitations in the type and task systems, and it makes the std::test API a little uglier.
2011-07-25Run test tasks in parallel according to RUST_THREADS. Issue #734Brian Anderson-31/+78
2011-07-24The Big Test Suite OverhaulBrian Anderson-2/+3
This replaces the make-based test runner with a set of Rust-based test runners. I believe that all existing functionality has been preserved. The primary objective is to dogfood the Rust test framework. A few main things happen here: 1) The run-pass/lib-* tests are all moved into src/test/stdtest. This is a standalone test crate intended for all standard library tests. It compiles to build/test/stdtest.stageN. 2) rustc now compiles into yet another build artifact, this one a test runner that runs any tests contained directly in the rustc crate. This allows much more fine-grained unit testing of the compiler. It compiles to build/test/rustctest.stageN. 3) There is a new custom test runner crate at src/test/compiletest that reproduces all the functionality for running the compile-fail, run-fail, run-pass and bench tests while integrating with Rust's test framework. It compiles to build/test/compiletest.stageN. 4) The build rules have been completely changed to use the new test runners, while also being less redundant, following the example of the recent stageN.mk rewrite. It adds two new features to the cfail/rfail/rpass/bench tests: 1) Tests can specify multiple 'error-pattern' directives which must be satisfied in order. 2) Tests can specify a 'compile-flags' directive which will make the test runner provide additional command line arguments to rustc. There are some downsides, the primary being that Rust has to be functioning pretty well just to run _any_ tests, which I imagine will be the source of some frustration when the entire test suite breaks. Will also cause some headaches during porting. Not having individual make rules, each rpass, etc test no longer remembers between runs whether it completed successfully. As a result, it's not possible to incrementally fix multiple tests by just running 'make check', fixing a test, and repeating without re-running all the tests contained in the test runner. Instead you can filter just the tests you want to run by using the TESTNAME environment variable. This also dispenses with the ability to run stage0 tests, but they tended to be broken more often than not anyway.
2011-07-22Print a list of test failures in the test summary. Issue #428Brian Anderson-0/+10
2011-07-20Add a huge hack to allow the test runner to continue if a single task leaksBrian Anderson-0/+14
This is just until unwinding works. Adds a flag to the runtime to turn the memory leak checks on task destruction into warnings instead of fatal errors. I am so sorry. Issue #428
2011-07-20Test runner should fail if any tests fail. Issue #428Brian Anderson-2/+3
2011-07-16Sort tests before running them. Issue #428Brian Anderson-0/+12
2011-07-15Refactor std::testBrian Anderson-16/+8
2011-07-15Run test functions in isolated tasks. Issue #428Brian Anderson-2/+21
Each test is run in its own task so that the failure can be trapped and the test runner can continue. The easiest way to get the test functions into tasks currently is by treating them as unsafe pointers.
2011-07-14Add a flag to run ignored tests. Issue #428Brian Anderson-22/+78
2011-07-14Add a facility for ignoring tests. Issue #428Brian Anderson-17/+52
Adding the #[ignore] attribute will cause the test not to be run, though it will still show up in the list of tests.
2011-07-14The test runner's main returns unit, not int. Issue #428Brian Anderson-5/+3
The appropriate way to indicate failure from main is to fail.
2011-07-12Improve test runner summary message. Issue #428Brian Anderson-2/+8
2011-07-11Support running a subset of tests from the command line. Issue #428Brian Anderson-4/+36
2011-07-11Pass command-line args to the test runner. Issue #428Brian Anderson-1/+1
This will let the test runner filter the tests it runs.
2011-07-11Actually run tests from the std runner. Issue #428Brian Anderson-1/+48
2011-07-09Generate code to load a crate's tests into the std test runner. Issue #428Brian Anderson-1/+1
2011-07-09Begin adding some test runner types to std. Issue #428Brian Anderson-0/+56