summary refs log tree commit diff
path: root/src/test/bench/task-perf-word-count-generic.rs
AgeCommit message (Collapse)AuthorLines
2012-03-09Add an infinite loop constructTim Chevalier-2/+2
Add a loop {} construct for infinite loops, and use it in test cases. See #1906 for details.
2012-01-31Change option::t to optionTim Chevalier-1/+1
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-25Replacing str::unsafe_from_bytes with str::from_bytes (part 1)Kevin Cantu-1/+1
2012-01-19test: "tag" -> "enum" in benchPatrick Walton-2/+2
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-06update to use new spawn syntaxNiko Matsakis-4/+5
2012-01-05Switch to new param kind bound syntaxMarijn Haverbeke-19/+19
And remove support for the old syntax
2011-12-22Register new snapshots, purge log_err and log_full in favour of log(...).Graydon Hoare-5/+5
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-8/+10
#debug.
2011-12-18libcore: Remove task::set_min_stackBrian Anderson-4/+0
This existed to make up for the lack of stack growth, and wasn't generally safe.
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-14/+14
2011-11-18Update stdlib, compiler, and tests to new kind systemMarijn Haverbeke-19/+19
This involved adding 'copy' to more generics than I hoped, but an experiment with making it implicit showed that that way lies madness -- unless enforced, you will not remember to mark functions that don't copy as not requiring copyable kind. Issue #1177
2011-10-28Move to short kind kinds words in test suiteMarijn Haverbeke-19/+19
Issue #1076
2011-10-25Update our code to new type parameter kind syntaxMarijn Haverbeke-19/+23
Closes #1067
2011-10-20XFAIL task-perf-word-count-genericBrian Anderson-0/+2
This can't be done with bare functions. Issue #1022
2011-10-10Adjust function signatures to allow for vecs being immediateMarijn Haverbeke-2/+2
Some code was relying on vectors being implicitly by-reference (as non-immediate value). This adds the necessary &&-sigils. Closes #1021
2011-09-15Insert omitted semicolons for statementsMarijn Haverbeke-5/+5
2011-09-12Pretty-print for new arg-mode syntaxMarijn Haverbeke-6/+6
2011-09-12Reformat for new mode syntax, step 1Marijn Haverbeke-12/+12
Long lines were fixed in a very crude way, as I'll be following up with another reformat in a bit.
2011-09-02Reformat. Issue #855Brian Anderson-30/+28
2011-09-01Convert all uses of #ifmt to #fmt. Issue #855Brian Anderson-2/+2
2011-09-01Rename std::istr to std::str. Issue #855Brian Anderson-5/+5
2011-08-31Convert benchmarks to istrs. Issue #855Brian Anderson-11/+10
2011-08-31Convert uses of #fmt to #ifmt. Issue #855Brian Anderson-2/+2
2011-08-27Convert std::io to istrs. Issue #855Brian Anderson-2/+3
2011-08-27Convert std::u64 to istrs. Issue #855Brian Anderson-1/+3
2011-08-26Polymorphic MapReduce!Eric Holk-0/+328