| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2020-01-12 | Fix lint warning in compile-test.rs | xiongmao86 | -1/+1 | |
| 2019-11-18 | Rustup to rustc 1.41.0-nightly (a0d40f8bd 2019-11-18) | Manish Goregaokar | -1/+1 | |
| 2019-11-10 | Only pass rlibs in target deps directory | msizanoen1 | -7/+1 | |
| 2019-11-08 | Add target libs directory to search path | msizanoen1 | -1/+2 | |
| 2019-11-07 | Add the TARGET_LIBS environment variable for rustc CI testing | msizanoen1 | -1/+12 | |
| 2019-10-14 | new lints around `#[must_use]` fns | Andre Bogus | -0/+4 | |
| `must_use_unit` lints unit-returning functions with a `#[must_use]` attribute, suggesting to remove it. `double_must_use` lints functions with a plain `#[must_use]` attribute, but which return a type which is already `#[must_use]`, so the attribute has no benefit. `must_use_candidate` is a pedantic lint that lints functions and methods that return some non-unit type that is not already `#[must_use]` and suggests to add the annotation. | ||||
| 2019-10-03 | Test fixes | Shotaro Yamada | -2/+1 | |
| 2019-05-19 | Fix compile-test from forcing a rebuild. | Eric Huss | -4/+2 | |
| 2019-04-30 | Update find(p).map(p) occurrences to use find_map(p) | André Luis Leal Cardoso Junior | -4/+7 | |
| 2019-04-23 | compiletest: Disambiguate extern crate deps shared with the compiler | Igor Matuszewski | -2/+25 | |
| 2019-04-07 | Re-allow clippy::identity_conversion in compiletest | Manish Goregaokar | -0/+1 | |
| 2019-04-07 | Revert tests/compile-test.rs to 61aa5c957c219abe1fb2d1b5e51db8b365b4f565 | Manish Goregaokar | -38/+9 | |
| 2019-04-01 | Set level of identity_conversion FP to warn | flip1995 | -0/+1 | |
| 2019-03-26 | Fix some test failures | Félix Fischer | -4/+4 | |
| 2019-03-26 | Hacky rustup | Oliver Scherer | -9/+37 | |
| 2019-02-06 | Move run-pass tests to UI tests | Philipp Hansch | -1/+0 | |
| This should give us more UI coverage for free. It also removes the `run-pass` suite, so we now only have the `ui` suite. | ||||
| 2019-01-08 | Remove all copyright license headers | Philipp Hansch | -9/+0 | |
| Discussion previously happened in https://github.com/rust-lang/rust/pull/43498 | ||||
| 2018-12-29 | Apply cargo fix --edition-idioms fixes | Konrad Borowski | -1/+1 | |
| 2018-12-28 | Use -Zui-testing flag | flip1995 | -1/+4 | |
| 2018-12-14 | Revert "Merge pull request #3257 from o01eg/remove-sysroot" | Matthias Krüger | -28/+1 | |
| This reverts commit 041c49c1ed11b016d6ab9379643bb1da2adf5bfe, reversing changes made to 1df5766cbb559aab0ad5c2296d8b768182b5186c. | ||||
| 2018-12-06 | Fix format. | O01eg | -1/+5 | |
| 2018-12-06 | Add sysroot getting code to tests. | O01eg | -1/+24 | |
| 2018-11-27 | Run rustfmt on the tests | flip1995 | -1/+0 | |
| 2018-10-29 | compiletest: clean rmeta data (from "cargo check") before running compiletest. | Matthias Krüger | -1/+4 | |
| Fixes #2896 Fixes #2139 | ||||
| 2018-10-06 | Add license header to Rust files | Manish Goregaokar | -0/+10 | |
| 2018-06-07 | Formatting | Mateusz Mikuła | -8/+7 | |
| 2018-05-30 | Use compiletest::make_tests to allow it to setup the output folders | Wim Looman | -14/+35 | |
| 2018-05-30 | Get compile-test tests for configuration working | Wim Looman | -3/+37 | |
| 2018-05-22 | Format code | Mateusz Mikuła | -5/+2 | |
| 2018-03-16 | Format code | Mateusz Mikuła | -2/+5 | |
| Signed-off-by: Mateusz Mikuła <mati865@gmail.com> | ||||
| 2018-03-13 | Update dependencies | Oliver Schneider | -1/+1 | |
| 2018-02-01 | Give travis a guaranteed existing directory for ui test output | Oliver Schneider | -1/+4 | |
| 2018-01-17 | Update changed ui tests | Oliver Schneider | -1/+3 | |
| 2017-12-15 | Rustup and lazy_static version mismatch fix | Oliver Schneider | -18/+0 | |
| fixes #2274 | ||||
| 2017-11-14 | Apply changes that were required for running in the rustc test suite | Oliver Schneider | -4/+49 | |
| 2017-11-09 | Build path from current_dir | Shotaro Yamada | -3/+5 | |
| 2017-11-09 | Use compiletest 0.3 | Shotaro Yamada | -1/+3 | |
| 2017-10-03 | Reduce the hackiness of cargo-clippy | Oliver Schneider | -4/+11 | |
| 2017-09-05 | Run nightly rustfmt | Oliver Schneider | -2/+4 | |
| 2017-09-01 | wiki -> docs | Oliver Schneider | -1/+1 | |
| 2017-08-14 | Rustfmt | Oliver Schneider | -4/+2 | |
| 2017-08-02 | Update to latest compiletest version | Oliver Schneider | -1/+1 | |
| 2017-08-01 | Move all our tests back to ui tests | Oliver Schneider | -2/+2 | |
| 2017-05-17 | Use the workspace target directory | Oliver Schneider | -2/+2 | |
| 2017-02-15 | satisfy rustfmt | Oliver Schneider | -2/+4 | |
| 2017-02-14 | fix windows tests | Andre Bogus | -0/+2 | |
| Windows has a different error message than POSIX, so the ui tests fail for the clippy-config-fail tests. This commit splits those tests up in target-os specific subdirectories and extends compile-test.rs to run either of them based on the target os. Here's hope we'll get a green appveyor build. | ||||
| 2017-02-07 | rustup and compile-fail -> ui test move | Oliver Schneider | -1/+2 | |
| 2016-08-17 | fallout | Oliver Schneider | -1/+1 | |
| 2016-06-25 | don't depend on regex_macros anymore | Oliver 'ker' Schneider | -14/+1 | |
| 2016-06-10 | Run rustfmt | mcarton | -1/+1 | |
| Only partially apply suggestions. | ||||
