about summary refs log tree commit diff
path: root/src/test/bench/task-perf-word-count.rs
AgeCommit message (Collapse)AuthorLines
2012-08-02Removing an obsolete benchmarkEric Holk-459/+0
2012-08-01Convert ret to returnBrian Anderson-5/+5
2012-07-31Fix failing testsBrian Anderson-3/+3
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-3/+3
2012-07-30Revert "Fix build by xfailing tests which produce irreducible CFGs."Elliott Slaughter-1/+0
This reverts commit 9ca2a11137e112233901cbafc11c125e596265fc.
2012-07-25Fix build by xfailing tests which produce irreducible CFGs.Elliott Slaughter-0/+1
2012-07-23Convert bench and run-pass tests to new task_builder interfaceBen Blum-6/+10
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-22/+22
#2907.
2012-07-01Convert to new closure syntaxBrian Anderson-8/+8
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-8/+8
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-8/+8
2012-06-20Remove bind. Issue #2189Brian Anderson-2/+2
2012-04-23Move map iface over to more `for`-friendly iteration methodsMarijn Haverbeke-2/+2
2012-04-06Convert old-style for loops to new-styleMarijn Haverbeke-2/+2
Most could use the each method, but because of the hack used to disambiguate old- and new-style loops, some had to use vec::each. (This hack will go away soon.) Issue #1619
2012-04-05Rename task::task_builder to task::builderTim Chevalier-2/+2
Closes #2120.
2012-03-26Bulk-edit mutable -> mut.Graydon Hoare-3/+3
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-9/+9
2012-03-14std: Rename the hashmap constructors to conform to new standardsBrian Anderson-2/+2
Instead of using the new_ prefix just name them after their type
2012-03-13Overhaul constructor naming in libsBrian Anderson-2/+2
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-1/+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-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-03-07stdlib: Stop incurring vtable dispatch costs when hashmaps are usedPatrick Walton-0/+1
This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict.
2012-03-07Revert "stdlib: Stop incurring vtable dispatch costs when hashmaps are used"Patrick Walton-1/+0
This reverts commit f0250a23d3fa2f8b4a4a4113ca89e41945a4cfed.
2012-03-07stdlib: Stop incurring vtable dispatch costs when hashmaps are usedPatrick Walton-0/+1
This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict.
2012-03-02comp/std: rename io::string_reader to io::str_reader.Erick Tryzelaar-2/+2
2012-02-20core: New task APIBrian Anderson-9/+11
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-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