| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-05-06 | Move tests from `test/run-fail` to UI | Yuki Okushi | -1472/+0 | |
| 2020-04-30 | Auto merge of #70175 - Amanieu:remove_nlp, r=pnkfelix | bors | -54/+0 | |
| Remove -Z no-landing-pads flag Since #67502, `-Z no-landing-pads` will cause all attempted unwinds to abort since we don't generate a `try` / `catch`. This previously worked because `__rust_try` was located in libpanic_unwind which is always compiled with `-C panic=unwind`, but `__rust_try` is now directly inline into the crate that uses `catch_unwind`. As such, `-Z no-landing-pads` is now mostly useless and people should use `-C panic=abort` instead. | ||||
| 2020-04-29 | Remove -Z no-landing-pads tests | Amanieu d'Antras | -54/+0 | |
| 2020-04-29 | Remove -Z no-landing-pads flag | Amanieu d'Antras | -2/+2 | |
| 2020-04-28 | Allow Locals to be propagated into and from, but restricted to their own block | Félix Fischer | -3/+3 | |
| 2020-02-18 | better lint names | Ralf Jung | -19/+19 | |
| 2020-02-15 | adjust run-fail tests | Ralf Jung | -9/+9 | |
| 2020-02-02 | Add a resume type parameter to `Generator` | Jonas Schievink | -2/+2 | |
| 2019-12-24 | Differentiate todo! and unimplemented! | Andre Bogus | -1/+1 | |
| 2019-10-18 | [const-prop] Handle MIR Rvalue::Aggregates | Wesley Wiser | -0/+2 | |
| 2019-10-15 | Organize `never_type` tests | Mazdak Farrokhzad | -74/+0 | |
| Also move {run-fail -> ui}/never_type | ||||
| 2019-09-27 | [const-prop] Replace `CheckedBinaryOp` handling with use of `InterpCx` | Wesley Wiser | -0/+8 | |
| 2019-06-16 | compiletest: Validate pass modes harder | Vadim Petrochenkov | -2/+2 | |
| 2019-05-12 | Remove feature(nll) when compare mode is sufficient | Matthew Jasper | -2/+0 | |
| 2019-04-22 | Remove double trailing newlines | varkor | -4/+0 | |
| 2019-04-22 | update tests for migrate mode by default | Matthew Jasper | -1/+1 | |
| 2019-03-03 | Use the correct state for poisoning a generator | Matthew Jasper | -0/+22 | |
| 2018-12-25 | Remove licenses | Mark Rousskov | -1404/+0 | |
| 2018-11-04 | Fix two run-fail tests for asmjs | Nikita Popov | -2/+2 | |
| Use eprintln!() to make sure stdio is flushed. | ||||
| 2018-10-05 | Stabilize `min_const_fn` | Oliver Schneider | -1/+0 | |
| 2018-08-31 | Restrict most uses of `const_fn` to `min_const_fn` | Oliver Schneider | -1/+1 | |
| 2018-08-19 | Fix typos found by codespell. | Matthias Krüger | -2/+2 | |
| 2018-08-05 | Convert unknown_features lint into an error | varkor | -2/+0 | |
| 2018-08-05 | Fix test/run-fail | varkor | -6/+0 | |
| 2018-07-04 | Ensure that borrows wind up unactivated. | David Wood | -0/+18 | |
| 2018-06-05 | Fix tests | Fabian Zaiser | -0/+3 | |
| 2018-05-24 | move simd-minmax-test to run-pass; require llvm 7 | gnzlbg | -57/+0 | |
| 2018-05-19 | Overflows only panic in debug mode | Oliver Schneider | -0/+1 | |
| 2018-05-19 | Release mode overflows should not cause const eval to error | Oliver Schneider | -0/+34 | |
| 2018-05-18 | Auto merge of #50653 - oli-obk:bad_const, r=cramertj | bors | -0/+8 | |
| Make the `const_err` lint `deny`-by-default At best these things are runtime panics (debug mode) or overflows (release mode). More likely they are public constants that are unused in the crate declaring them. This is not a breaking change, as dependencies won't break and root crates can `#![warn(const_err)]`, though I don't know why anyone would do that. | ||||
| 2018-05-17 | Rename trans to codegen everywhere. | Irina Popa | -1/+1 | |
| 2018-05-12 | Make the `const_err` lint `deny`-by-default | Oliver Schneider | -0/+8 | |
| 2018-04-27 | dyn_trait feature-gate just for stage0 | Christian Poveda | -2/+0 | |
| 2018-04-21 | Add back missing `#![feature(never_type)]`s | kennytm | -0/+11 | |
| 2018-04-13 | Rename must-compile-successfully into compile-pass | Guillaume Gomez | -2/+2 | |
| 2018-04-05 | add `failure-status: 1` to the test | Niko Matsakis | -0/+1 | |
| 2018-04-06 | Fix ICE with `main`'s return type containing lifetimes | Shotaro Yamada | -0/+36 | |
| 2018-03-26 | fix tests | gnzlbg | -0/+1 | |
| 2018-03-26 | set min-llvm-version 6.0, ignore-emscripten | gnzlbg | -0/+1 | |
| 2018-03-26 | add tests | gnzlbg | -0/+55 | |
| 2018-03-19 | Stabilize termination_trait | Tyler Mandry | -4/+0 | |
| This stabilizes `main` with non-() return types; see #48453. | ||||
| 2018-03-14 | stabilise feature(never_type) | Andrew Cann | -9/+0 | |
| Replace feature(never_type) with feature(exhaustive_patterns). feature(exhaustive_patterns) only covers the pattern-exhaustives checks that used to be covered by feature(never_type) | ||||
| 2018-02-22 | add test for `fn main() -> !` | Niko Matsakis | -0/+17 | |
| 2018-02-12 | changed termination_trait's bound from Error to Debug; added compiletest ↵ | Brad Gibson | -0/+20 | |
| header command and appropriate tests | ||||
| 2018-01-02 | Add 'ignore-cloudabi' to tests that don't and won't build on CloudABI. | Ed Schouten | -3/+9 | |
| It looks like many of these tests are already disabled on emscripten, which also doesn't seem to support environment variables and subprocess spawning. Just add a similar tag for CloudABI. While there, sort some of the lists of operating systems alphabetically. | ||||
| 2017-12-30 | Remove excessive trailing newlines. | kennytm | -2/+0 | |
| 2017-11-30 | rustc: Prepare to enable ThinLTO by default | Alex Crichton | -2/+2 | |
| This commit prepares to enable ThinLTO and multiple codegen units in release mode by default. We've still got a debuginfo bug or two to sort out before actually turning it on by default. | ||||
| 2017-11-26 | Update tests for -Zborrowck-mir -> -Zborrowck=mode migration | est31 | -1/+1 | |
| 2017-11-24 | Kill the storage for all locals on returning terminators | Keith Yeung | -0/+19 | |
| 2017-10-31 | rustc_typeck: use subtyping on the LHS of binops. | Eduard-Mihai Burtescu | -0/+2 | |
