summary refs log tree commit diff
path: root/src/libstd/test.rs
AgeCommit message (Collapse)AuthorLines
2012-07-04Remove empty argument lists from do expressionsBen Striegel-1/+1
2012-07-03Switch 'native' to 'extern' (or 'foreign' in some descriptions)Graydon Hoare-1/+1
2012-07-01Convert to new closure syntaxBrian Anderson-9/+9
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-2/+2
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-21/+21
2012-06-27Replace more vector additions (issue #2719)Eric Holk-1/+1
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-19/+19
2012-06-20Remove bind. Issue #2189Brian Anderson-4/+4
2012-06-18std: Use the singular 'test' when running just 1. Closes #2554Brian Anderson-1/+2
2012-06-07Use #[cfg(unix)] and #[cfg(windows)] everywhereBrian Anderson-5/+3
2012-06-04Machine types are different from int/uint, etc (Issue #2187)Eric Holk-1/+2
2012-06-04Get rid of warnings from instantiating typarams with non-implicitly copyable ↵Michael Sullivan-1/+2
types.
2012-06-01squelch warnings in testsNiko Matsakis-2/+2
2012-05-25Get rid of many implicit copies as a preliminary to Issue #2448.Michael Sullivan-12/+12
2012-05-18Using const vector slices for more vec functions.Eric Holk-1/+2
2012-04-13Revert "libstd: Handle test results in serial"Haitao Li-44/+33
This reverts commit 828d0677c4d6d9cc955f9b90e8b28039f69ff8b8.
2012-04-13Revert "libstd: Colorify test results when run in parallel"Haitao Li-15/+22
This reverts commit 7b3cb05311ef7d671b0bf92b041112ef141dc188.
2012-04-12libstd: Colorify test results when run in parallelHaitao Li-22/+15
Closes #782
2012-04-12libstd: Handle test results in serialHaitao Li-33/+44
Issue #782
2012-04-05Rename task::task_builder to task::builderTim Chevalier-1/+1
Closes #2120.
2012-04-04Logfile output from tests; summarise in make checkGrahame Bowland-5/+40
Add an optional --logfile argument to std::test::test_main and to compiletest. Use this features and the new 'check-summary.py' script to summarise all the tests performed by the 'check' target. This is a short term fix for #2075.
2012-03-27Move some code over to iterator-for to see how it performs.Marijn Haverbeke-3/+3
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-15/+15
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-1/+1
2012-03-16core: Store reexporting result and either. Closes #1997Brian Anderson-0/+1
2012-03-14annotate libstd and start enforcing mutabilityNiko Matsakis-7/+6
2012-03-13implement deserialization, rename mk_mem_buffer() to mem_buffer()Niko Matsakis-1/+1
2012-03-13Name types after their modules instead of 't'Brian Anderson-1/+1
2012-03-13Overhaul constructor naming in libsBrian Anderson-1/+1
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-2/+1
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-03-12std: Sort test failures. Closes #1929Brian Anderson-15/+57
2012-03-09std: Convert to rustdocBrian Anderson-0/+2
2012-02-22Remove preconditions from librariesMarijn Haverbeke-8/+2
Closes #1805
2012-02-20core: New task APIBrian Anderson-14/+6
2012-02-18core: When running tests sequentially, print the test name before running itBrian Anderson-2/+11
Useful for debugging hanging tests
2012-02-13(core::str) add find_bytes and export it...Kevin Cantu-1/+1
2012-02-07Make process-spawning take environments and working directories, remove ↵Graydon Hoare-1/+10
procsrv task from compiletest.
2012-02-03core: rename str::lteq to str::leTom Lee-1/+1
2012-01-31Change option::t to optionTim Chevalier-3/+3
Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming).
2012-01-31Require alts to be exhaustiveTim Chevalier-2/+4
middle::check_alt does the work. Lots of changes to add default cases into alts that were previously inexhaustive.
2012-01-19lib: ";" to "," in enumsPatrick Walton-4/+4
2012-01-19libcore: Use 4x the number of scheduler threads for testingBrian Anderson-1/+5
An arbitrary number. I've done no measurements but it's intended to overcome the effects of tasks randomly being scheduled to threads and no work stealing. If scheduler threads == 1 then we just use a single test task.
2012-01-19libcore: Do less blocking in the test runnerBrian Anderson-41/+56
2012-01-19stdlib: "tag" -> "enum"Patrick Walton-2/+2
2012-01-19libstd: Long linesBrian Anderson-2/+2
2012-01-19Use fn~ to simplify the core::test interfaceBrian Anderson-70/+44
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-6/+6
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-19Use ctypes in native function declarationsHaitao Li-1/+2
2012-01-17libstd: Move std tests into libstdBrian Anderson-0/+129
2012-01-13Remove workaround for issue #1494Marijn Haverbeke-7/+1
We have a snapshot that includes the fix.