about summary refs log tree commit diff
path: root/src/test/run-pass/yield1.rs
AgeCommit message (Collapse)AuthorLines
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-2/+2
2011-10-20Remove temporary fn# syntaxBrian Anderson-1/+1
2011-10-20Drop the 2 from the spawn*2 functionsBrian Anderson-1/+1
Issue #1022
2011-10-20Convert tests to use bare-fn spawnBrian Anderson-3/+2
Issue #1022
2011-08-25Cleaning up task and comm exports, updating all the test cases.Eric Holk-2/+2
2011-08-20ReformatBrian Anderson-1/+2
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-1/+2
2011-08-15Porting a bunch of tests over.Eric Holk-2/+7
2011-08-03Remove all xfail-stage0 directivesBrian Anderson-3/+0
While it is still technically possible to test stage 0, it is not part of any of the main testing rules and maintaining xfail-stage0 is a chore. Nobody should worry about how tests fare in stage0.
2011-07-27Reformat for new syntaxMarijn Haverbeke-1/+1
2011-06-15Reformat source tree (minus a couple tests that are still grumpy).Graydon Hoare-11/+4
2011-06-13This is the mega-ucontext commit. It replaces the task switching mechanism ↵Eric Holk-0/+17
with a new one inspired by ucontext. It works under Linux, OS X and Windows, and is Valgrind clean on Linux and OS X (provided the runtime is built with gcc). This commit also moves yield and join to the standard library, as requested in #42. Join is currently a no-op though.