summary refs log tree commit diff
path: root/src/test/bench/task-perf-word-count.rs
AgeCommit message (Collapse)AuthorLines
2012-01-19rustc: Make the pretty printer output commas after enum variants. Update all ↵Patrick Walton-3/+3
tests accordingly.
2012-01-19test: "tag" -> "enum" in benchPatrick Walton-2/+2
2012-01-19Remove support for the '.' after a nullary tag in a patternTim Chevalier-2/+2
(Commit also includes lots of changes to remove '.'s that a git merge messed up, or else it was monkeys.)
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-13make "native fn" the type for bare functions, remove fn exprsNiko Matsakis-2/+2
2012-01-11Major clean-up of std::ioMarijn Haverbeke-14/+4
Use ifaces instead of objs, stop wrapping everything in two (or three) layers of no-value-added indirection, and remove some of the more pointless/outdated idioms from the code.
2012-01-06rewrite to use old C++-based mechanismNiko Matsakis-6/+5
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-16reorder args to the various vec, option fns so blk comes lastNiko Matsakis-2/+2
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-15/+15
2011-12-07Disallow binding by-mut-ref and by-move argumentsMarijn Haverbeke-9/+9
Fix bug in bound by-copy arguments. Closes #1261
2011-11-11Give task-perf-word-count default behavior. Closes #1172Brian Anderson-18/+172
2011-10-29stdlib: Make io failures recoverable by returning a resultBrian Anderson-1/+2
2011-10-21Remove some semicolons after block callsMarijn Haverbeke-2/+2
The remaining ones can be removed after the next snapshot. (Or we can let the next pretty-print pass take care of them.)
2011-10-21Remove remaining uses of iter and for-eachMarijn Haverbeke-8/+2
Issue #1056
2011-10-20Remove temporary fn# syntaxBrian Anderson-2/+2
2011-10-20Make fn denote a bare function. Convert fn to fn@ as neededBrian Anderson-2/+2
2011-10-20Drop the 2 from the spawn*2 functionsBrian Anderson-2/+2
Issue #1022
2011-10-20Convert tests to use bare-fn spawnBrian Anderson-4/+6
Issue #1022
2011-09-15Insert omitted semicolons for statementsMarijn Haverbeke-5/+3
2011-09-12Pretty-print for new arg-mode syntaxMarijn Haverbeke-2/+2
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-26/+24
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-2/+2
2011-08-31Convert benchmarks to istrs. Issue #855Brian Anderson-27/+24
2011-08-31Convert uses of #fmt to #ifmt. Issue #855Brian Anderson-3/+3
2011-08-27Convert std::map::new_str_hash to istrs. Issue #855Brian Anderson-8/+9
2011-08-27Convert std::io to istrs. Issue #855Brian Anderson-2/+4
2011-08-27Convert std::u64 to istrs. Issue #855Brian Anderson-1/+1
2011-08-25Cleaning up task and comm exports, updating all the test cases.Eric Holk-28/+30
2011-08-20ReformatBrian Anderson-18/+10
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
2011-08-17Using move-mode for spawn thunks to avoid race conditions.Eric Holk-2/+2
2011-08-16Port the tests to the expr foo::<T> syntax.Erick Tryzelaar-2/+2
2011-08-16Port the tests to the typaram foo<T> syntax.Erick Tryzelaar-15/+15
2011-08-16Rename std::ivec to std::vecBrian Anderson-4/+4
2011-08-16Convert most main functions to the ivec signatureBrian Anderson-5/+4
Converting rustc will still take a snapshot
2011-08-15The wonky for...in... whitespace was bothering me. Sorry!Lindsey Kuper-1/+1
2011-08-15Syntax updates.Eric Holk-2/+3
2011-08-15Converted over benchmarks.Eric Holk-65/+39
2011-08-12Convert benchmarks to ivecsBrian Anderson-7/+7
2011-08-12Rename std::ioivec to std::ioBrian Anderson-5/+5
2011-08-12Convert all uses of std::io to std::ioivecBrian Anderson-5/+5
2011-08-12Rename std::str::unsafe_from_bytes_ivec to unsafe_from_bytesBrian Anderson-1/+1
2011-08-12Remove vec version of str::bytes, rename bytes_ivec to str::bytesBrian Anderson-1/+1
2011-08-09Change the ivec type syntax to [T].Erick Tryzelaar-2/+2
This preserves the old syntax for now.
2011-08-02Don't pp extra lines after block open when preserving whitespace. Closes #759Brian Anderson-1/+0
2011-08-02Include benchmarks in pretty-print testsBrian Anderson-0/+1