about summary refs log tree commit diff
path: root/src/test/run-fail/panic-task-name-none.rs
AgeCommit message (Collapse)AuthorLines
2018-12-25Remove licensesMark Rousskov-10/+0
2016-09-30Adding ignore-emscripten to failing tests.Ross Schulman-0/+1
2016-06-06run rustfmt on test/run-fail folderSrinivas Reddy Thatiparthy-3/+4
2015-02-17Test fixes and rebase conflictsAlex Crichton-2/+1
2015-02-17Fallout from stabilizationAaron Turon-2/+2
2015-01-30Remove all `i` suffixesTobias Bucher-1/+1
2015-01-06Fallout from stabilizationAaron Turon-1/+1
2014-12-18Revise std::thread API to join by defaultAaron Turon-4/+4
This commit is part of a series that introduces a `std::thread` API to replace `std::task`. In the new API, `spawn` returns a `JoinGuard`, which by default will join the spawned thread when dropped. It can also be used to join explicitly at any time, returning the thread's result. Alternatively, the spawned thread can be explicitly detached (so no join takes place). As part of this change, Rust processes now terminate when the main thread exits, even if other detached threads are still running, moving Rust closer to standard threading models. This new behavior may break code that was relying on the previously implicit join-all. In addition to the above, the new thread API also offers some built-in support for building blocking abstractions in user space; see the module doc for details. Closes #18000 [breaking-change]
2014-12-14Mostly rote conversion of `proc()` to `move||` (and occasionally `Thunk::new`)Niko Matsakis-1/+1
2014-11-11test: Rename files, fail -> panic.Michael Sproul-0/+21