summary refs log tree commit diff
path: root/src/test/run-pass/spawning-with-debug.rs
AgeCommit message (Collapse)AuthorLines
2014-01-03test: Make all the run-pass tests use `pub fn main`Patrick Walton-1/+1
2013-12-24Test fixes and rebase problemsAlex Crichton-1/+0
Note that this removes a number of run-pass tests which are exercising behavior of the old runtime. This functionality no longer exists and is thoroughly tested inside of libgreen and libnative. There isn't really the notion of "starting the runtime" any more. The major notion now is "bootstrapping the initial task".
2013-11-26librustc: Make `||` lambdas not infer to `proc`sPatrick Walton-1/+1
2013-11-10Remove a debug! statement before I/O is readyAlex Crichton-0/+22
The logging macros all use libuv-based I/O, and there was one stray debug statement in task::spawn which was executing before the I/O context was ready. Remove it and add a test to make sure that we can continue to debug this sort of code. Closes #10405