about summary refs log tree commit diff
AgeCommit message (Collapse)AuthorLines
2019-11-07Improve function checkingHeinz N. Gies-3/+12
2019-11-07Exclude main from exit lintHeinz N. Gies-5/+34
2019-11-07Update lintsHeinz N. Gies-0/+9
2019-11-07Add lint for exitHeinz N. Gies-0/+58
2019-11-07Add the TARGET_LIBS environment variable for rustc CI testingmsizanoen1-1/+12
2019-11-07Auto merge of #4788 - Manishearth:rustup, r=flip1995bors-166/+124
Rustup to rustc 1.40.0-nightly (50f8aadd 2019-11-07) changelog: Deprecate [`into_iter_on_array`] lint r? @phansch @oli-obk
2019-11-07Deprecate `into_iter_on_array` lintflip1995-130/+67
This lint was uplifted/reimplemented by rustc. Rustup to rust-lang/rust#66017
2019-11-07Rustup to rust-lang/rust#65884flip1995-22/+30
2019-11-07Rustup to rustc 1.40.0-nightly (7a76fe76f 2019-11-07)Manish Goregaokar-14/+27
2019-11-07use-self: correctly ignore dummy pathsMichael Wright-62/+108
2019-11-06Auto merge of #4781 - lzutao:rustup/65134, r=matthiaskrgrbors-30/+31
rustup improper_ctypes: `extern "C"` fns cc https://github.com/rust-lang/rust/pull/65134 changelog: none
2019-11-07rustup improper_ctypes: `extern "C"` fnsLzu Tao-30/+31
2019-11-06Add regression test for ICE #4775flip1995-0/+14
2019-11-06Fix ICE #4775flip1995-1/+7
2019-11-06Auto merge of #4772 - HMPerson1:tastier_ice_cream, r=flip1995bors-9/+23
Use correct TypeckTables when hashing bodies Fixes #4760 changelog: Fix ICE while hashing block expressions #4760 r? @phansch
2019-11-06Auto merge of #4777 - lzutao:66014-rustup, r=matthiaskrgrbors-24/+26
rustup https://github.com/rust-lang/rust/pull/65776 changelog: none
2019-11-06bump smallvec to 1.0.0Lzu Tao-1/+1
2019-11-06chore: sort out clippy_lints depsLzu Tao-6/+7
2019-11-06rustup rust-lang/rust#65776Lzu Tao-12/+12
2019-11-06build: re-enable stdsimd integration testLzu Tao-4/+3
Also sorting rls to the first in the list because it is now the longest running test.
2019-11-06rustup https://github.com/rust-lang/rust/pull/66014Lzu Tao-2/+4
2019-11-06Fix crash in `use-self` lintMichael Wright-2/+63
Fixes #4727
2019-11-06Auto merge of #4714 - msizanoen1:remove-plugin, r=Manishearthbors-40/+0
Remove clippy plugin This PR removes the clippy plugin, which is already deprecated and is causing the `fmt_macros` not found error in rust-lang/rust#62558: https://github.com/rust-lang/rust/issues/62558#issuecomment-529884322 changelog: remove plugin interface
2019-11-05Auto merge of #4773 - lzutao:rls/print-something, r=Manishearthbors-4/+6
build: avoid timing out in Travis cc #4770 changelog: none
2019-11-05Turn off stdsimd integration testManish Goregaokar-0/+1
2019-11-05chore: remove unnecessary parentheses around typeLzu Tao-2/+2
2019-11-05build: avoid timing out in TravisLzu Tao-2/+3
2019-11-04Use correct TypeckTables when hashing bodiesHMPerson1-9/+23
2019-11-02deprecated_lints: re-fix ASSIGN_OPS lint doc-commentEvan Stoll-5/+5
2019-11-02deprecated_lints: align doc comment indents with `pub LINT_NAME`Evan Stoll-56/+56
2019-11-02deprecated_lints: remove extraneous `declare_deprecated_lint`Evan Stoll-1/+0
2019-10-31`DecimalLiteralRepresentation` simplificationMichael Wright-6/+1
Remove recalculation of literal value.
2019-10-30Fix #4748 - Deprecated lints don't expandEvan Stoll-13/+13
- Move doc comments inside of declare_deprecated_lint macros so that they are picked up by lintlib.py
2019-10-29Auto merge of #4752 - lzutao:cache/uninstall-clippy, r=flip1995bors-1/+2
build: do not cache clippy binaries in integration tests We rebuild clippy anyway. So caching them is needless ```console % ls -lF target/debug total 628M drwxr-xr-x 22 lzutao lzutao 4.0K Oct 29 04:02 build/ drwxr-xr-x 2 lzutao lzutao 144K Oct 29 04:03 deps/ drwxr-xr-x 2 lzutao lzutao 4.0K Oct 29 03:57 examples/ drwxr-xr-x 11 lzutao lzutao 4.0K Oct 29 04:03 incremental/ -rwxr-xr-x 2 lzutao lzutao 3.4M Oct 29 04:03 cargo-clippy* -rw-r--r-- 1 lzutao lzutao 11K Oct 29 03:58 cargo-clippy.d -rwxr-xr-x 2 lzutao lzutao 313M Oct 29 04:03 clippy-driver* -rw-r--r-- 1 lzutao lzutao 11K Oct 29 03:58 clippy-driver.d -rw-r--r-- 1 lzutao lzutao 11K Oct 29 04:03 libclippy.d -rwxr-xr-x 2 lzutao lzutao 312M Oct 29 04:03 libclippy.so* ``` changelog: none
2019-10-29Auto merge of #4753 - mikerite:approx-const-20191029, r=flip1995bors-7/+4
Simplify approx const truncation check changelog: none
2019-10-29Simplify approx const truncation checkMichael Wright-7/+4
2019-10-29build: do not cache clippy binaries in integration testsLzu Tao-1/+2
We rebuild clippy anyway.
2019-10-29Auto merge of #4720 - lzutao:int-errexit, r=phanschbors-5/+11
Do not early exit if cargo clippy returns non-zero status code changelog: none
2019-10-29build: strip before caching in .cargo/binLzu Tao-0/+1
2019-10-29Early exit in integration testsLzu Tao-5/+10
2019-10-28Auto merge of #4744 - phansch:split_up_some_derive_test, r=flip1995bors-92/+95
UI test cleanup: Extract derive_hash_xor_eq tests changelog: none cc #2038
2019-10-28Auto merge of #4749 - flip1995:backport_merge, r=Manishearthbors-0/+0
Merge backport branches back into master r? @Manishearth cc #4745 changelog: none
2019-10-28Merge remote-tracking branch 'upstream/rust-1.39.0' into backport_mergeflip1995-0/+0
2019-10-28Merge remote-tracking branch 'upstream/rust-1.38.0' into backport_mergeflip1995-0/+0
2019-10-28Merge remote-tracking branch 'upstream/rust-1.36.0' into backport_mergeflip1995-0/+0
2019-10-28Auto merge of #4747 - matthiaskrgr:rustup_19, r=flip1995bors-8/+6
rustup https://github.com/rust-lang/rust/pull/65792/ changelog: none
2019-10-28travis: temporarily disable rustfmt ci check until #4742 is resolvedMatthias Krüger-2/+3
2019-10-28rustup https://github.com/rust-lang/rust/pull/65792/Matthias Krüger-6/+3
2019-10-28UI test cleanup: Extract derive_hash_xor_eq testsPhilipp Hansch-92/+95
2019-10-26Auto merge of #4739 - flip1995:rustup, r=flip1995bors-0/+108
Rustup to rust-lang/rust#65773 changelog: none