about summary refs log tree commit diff
path: root/src/lib
AgeCommit message (Expand)AuthorLines
2011-07-22Print a list of test failures in the test summary. Issue #428Brian Anderson-0/+10
2011-07-21Use correct win file open constants, per MinGWBrian Anderson-6/+6
2011-07-21Add some support for using a map like a set.Michael Sullivan-2/+15
2011-07-20rustc: Implement ptr_eq in Rust. Shaves 4 s off compile time.Patrick Walton-4/+4
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-19Fix color term detection in std::termivecBrian Anderson-1/+1
2011-07-19Avoid double-closing pipes in std::run::start_programBrian Anderson-4/+13
2011-07-19Refactor std::runBrian Anderson-9/+16
2011-07-19Fix an invalid memory access in run_program and friendsBrian Anderson-4/+8
2011-07-18Add str::replaceBrian Anderson-0/+17
2011-07-18Add str::is_empty, is_not_empty predsBrian Anderson-0/+12
2011-07-18Fix qsort to not skip the right side when the pivot element gets put at index 0.Michael Sullivan-4/+8
2011-07-18Add setenv to standard libraryBrian Anderson-2/+52
2011-07-17Revert "Add setenv to standard library"Brian Anderson-48/+2
2011-07-17Add setenv to standard libraryBrian Anderson-2/+48
2011-07-16Sort tests before running them. Issue #428Brian Anderson-0/+12
2011-07-16Add std::ivec::to_mut, from_mutBrian Anderson-0/+16
2011-07-16Add ivec::zip/unzipBrian Anderson-0/+26
2011-07-15Refactor std::testBrian Anderson-16/+8
2011-07-15Run test functions in isolated tasks. Issue #428Brian Anderson-2/+21
2011-07-15Remove task_unsupervise from rt builtin functionsBrian Anderson-2/+2
2011-07-15Modify task::join to indicate how the task terminatedBrian Anderson-3/+11
2011-07-14Add an unsupervise builtin and function to std::taskBrian Anderson-0/+5
2011-07-14Add a flag to run ignored tests. Issue #428Brian Anderson-22/+79
2011-07-14Add head and tail functions to std::ivecBrian Anderson-0/+10
2011-07-14Add is_empty, is_not_empty preds to std::ivecBrian Anderson-0/+20
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-13Prohibit trailing whitespace under 'tidy' script. Clean up all caught cases.Graydon Hoare-4/+4
2011-07-13Feeble attempt at putting out the win tinderboxMarijn Haverbeke-2/+2
2011-07-12stdlib: Fix vector index in linux_os::waitpid. Put out burning tinderbox.Patrick Walton-1/+1
2011-07-12stdlib: Make pipe and waitpid use interior vectorsPatrick Walton-20/+20
2011-07-12stdlib: Port most of getopts over to interior vectorsPatrick Walton-28/+46
2011-07-12stdlib: Add interior vector methods to sha1Patrick Walton-17/+32
2011-07-12stdlib: Implement ivec::countPatrick Walton-0/+6
2011-07-12Improve test runner summary message. Issue #428Brian Anderson-2/+8
2011-07-12stdlib: Use the right upcall in win32_fs. Maybe puts out burning tinderbox?Patrick Walton-1/+3
2011-07-12stdlib: Implement str::split_ivec()Patrick Walton-0/+15
2011-07-12stdlib: Move fs over to interior vectors by introducing a rust_list_files_ive...Patrick Walton-6/+8
2011-07-12stdlib: Port std::either over to interior vectorsPatrick Walton-11/+11
2011-07-12stdlib: Switch lib::deque over to interior vectorsPatrick Walton-24/+28
2011-07-12stdlib: Move bit vectors over to interior vectorsPatrick Walton-13/+32
2011-07-12stdlib: Remove exterior vectors from termivecPatrick Walton-3/+8
2011-07-12stdlib: Remove obsolete FIXME about state fnsPatrick Walton-2/+0
2011-07-12stdlib: EBML API fixesPatrick Walton-9/+9
2011-07-12stdlib: Implement ivec::unsafe::set_lenPatrick Walton-5/+22
2011-07-12stdlib: Box data in EBML documentsPatrick Walton-7/+7
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