about summary refs log tree commit diff
path: root/src/lib/test.rs
AgeCommit message (Expand)AuthorLines
2011-08-31Convert uses of #fmt to #ifmt. Issue #855Brian Anderson-8/+7
2011-08-27Convert std::io to istrs. Issue #855Brian Anderson-11/+17
2011-08-27Convert std::getopts to istrs. Issue #855Brian Anderson-5/+7
2011-08-25Cleaning up task and comm exports, updating all the test cases.Eric Holk-2/+2
2011-08-23Resolve a number of FIXMEsBrian Anderson-2/+0
2011-08-20ReformatBrian Anderson-58/+44
2011-08-18Rename various things from ivec to vecBrian Anderson-1/+0
2011-08-17Use the new task join methods in the test runner. Closes #826Brian Anderson-5/+8
2011-08-17Remove more hacks from the test runnerBrian Anderson-9/+2
2011-08-17Simplify default_test_to_taskBrian Anderson-8/+4
2011-08-17Restore test task setupBrian Anderson-4/+1
2011-08-17Using move-mode for spawn thunks to avoid race conditions.Eric Holk-1/+4
2011-08-17Purge vecs from the std::test interfaceBrian Anderson-5/+1
2011-08-16Port the stdlib to the typaram foo<T> syntax.Erick Tryzelaar-5/+5
2011-08-16Rename std::ivec to std::vecBrian Anderson-12/+12
2011-08-16Add and use an ivec interface to std::testBrian Anderson-5/+8
2011-08-15The wonky for...in... whitespace was bothering me. Sorry!Lindsey Kuper-1/+1
2011-08-15Removed spawn and task from the parser. Updated all the tests except for the ...Eric Holk-9/+10
2011-08-12Remove vecs from std::getoptsBrian Anderson-2/+2
2011-08-12Rename std::termivec to std::termBrian Anderson-7/+7
2011-08-12Remove std::termBrian Anderson-7/+7
2011-08-12Remove vecs from std::sortBrian Anderson-1/+0
2011-08-12Rename std::ioivec to std::ioBrian Anderson-6/+6
2011-08-12Convert all uses of std::io to std::ioivecBrian Anderson-6/+6
2011-08-09Port the stdlib to the ivec type [T] syntax.Erick Tryzelaar-8/+8
2011-08-02Display the name of the test being waited for before the result is inBrian Anderson-1/+5
2011-08-02Use color to report the final test result, even when running in parallelBrian Anderson-2/+3
2011-07-29Base test concurrency on the number of scheduler threads.Brian Anderson-13/+7
2011-07-29Refactor std::testBrian Anderson-70/+108
2011-07-27Don't stop at first test failureBrian Anderson-11/+14
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
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
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
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
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
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
2011-07-14The test runner's main returns unit, not int. Issue #428Brian Anderson-5/+3
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
2011-07-11Actually run tests from the std runner. Issue #428Brian Anderson-1/+48