Skip to content

Fix the test suite after cargo update #1839

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion clippy_tests/examples/absurd-extreme-comparisons.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,5 @@ error: <-comparison of unit values detected. This will always be false

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/approx_const.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,5 @@ error: approximate value of `f{32, 64}::consts::SQRT_2` found. Consider using it

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/arithmetic.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,5 @@ error: floating-point arithmetic detected

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/array_indexing.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,5 @@ error: range is out of bounds

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/assign_ops.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,5 @@ error: manual implementation of an assign operation

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/assign_ops2.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,5 @@ error: variable appears on both sides of an assignment operation

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/attrs.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,5 @@ error: the since field must contain a semver-compliant version

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/bit_masks.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,5 @@ error: ineffective bit mask: `x | 1` compared to `8`, is the same as x compared

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/blacklisted_name.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,5 @@ error: use of a blacklisted/placeholder name `baz`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/block_in_if_condition.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,5 @@ error: this boolean expression can be simplified

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/bool_comparison.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ error: equality checks against false can be replaced by a negation

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/booleans.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,5 @@ help: try

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/borrow_box.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ error: you seem to be trying to use `&Box<T>`. Consider using just `&T`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/box_vec.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ error: you seem to be trying to use `Box<Vec<T>>`. Consider using just `Vec<T>`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/cast.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,5 @@ error: casting to the same type is unnecessary (`bool` -> `bool`)

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/char_lit_as_u8.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ error: casting character literal to u8. `char`s are 4 bytes wide in rust, so cas

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/cmp_nan.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,5 @@ error: doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/cmp_null.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ error: Comparing with null is better expressed by the .is_null() method

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/cmp_owned.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,5 @@ error: this creates an owned instance just for comparison

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/collapsible_if.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,5 @@ help: try

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/complex_types.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,5 @@ error: very complex type used. Consider factoring parts into `type` definitions

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/copies.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,5 @@ error: This else block is redundant.

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/cyclomatic_complexity.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,5 @@ error: the function has a cyclomatic complexity of 8

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,5 @@ error: the function has a cyclomatic complexity of 3

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/derive.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,5 @@ note: consider deriving `Clone` or removing `Copy`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/diverging_sub_expression.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,5 @@ error: sub-expression diverges

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/dlist.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,5 @@ error: I see you're using a LinkedList! Perhaps you meant some other data struct

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/doc.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,5 @@ error: you should put `be_sure_we_got_to_the_end_of_it` between ticks in the doc

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/double_neg.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ error: `--x` could be misinterpreted as pre-decrement by C programmers, is usual

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/double_parens.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,5 @@ error: Consider removing unnecessary double parentheses

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/drop_forget_copy.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,5 @@ note: argument has type SomeStruct

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/drop_forget_ref.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,5 @@ note: argument has type &SomeStruct

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/duplicate_underscore_argument.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ error: `darth` already exists, having another argument having almost the same na

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/empty_enum.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@ help: consider using the uninhabited type `!` or a wrapper around it

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/entry.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,5 @@ error: usage of `contains_key` followed by `insert` on a `BTreeMap`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/enum_glob_use.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ error: don't use glob imports for enum variants

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/enum_variants.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,5 @@ error: All variants have the same prefix: `With`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/enums_clike.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,5 @@ error: Clike enum variant discriminant is not portable to 32-bit targets

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/eq_op.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,5 @@ error: taken reference of right operand

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/eta.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,5 @@ error: redundant closure found

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/eval_order_dependence.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,5 @@ note: whether read occurs before this write depends on evaluation order

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/filter_methods.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,5 @@ error: called `filter_map(p).map(q)` on an `Iterator`. This is more succinctly e

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/float_cmp.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,5 @@ note: std::f32::EPSILON and std::f64::EPSILON are available.

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/for_loop.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,5 @@ help: use the corresponding method

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/format.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,5 @@ error: useless use of `format!`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/formatting.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,5 @@ error: possibly missing a comma here

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/functions.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,5 @@ error: this public function dereferences a raw pointer but is not marked `unsafe

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/identity_op.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,5 @@ error: the operation is ineffective. Consider reducing it to `x`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ error: redundant pattern matching, consider using `is_some()`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/if_not_else.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ error: Unnecessary `!=` operation

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/invalid_upcast_comparisons.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,5 @@ error: because of the numeric bounds on `u8` prior to casting, this expression i

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/item_after_statement.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ error: adding items after statements is confusing, since items exist from the st

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/large_enum_variant.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,5 @@ help: consider boxing the large fields to reduce the total size of the enum

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/len_zero.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,5 @@ error: length comparison to zero

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/let_if_seq.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,5 @@ error: `if _ { .. } else { .. }` is an expression

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/let_return.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@ note: this expression can be directly returned

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
1 change: 0 additions & 1 deletion clippy_tests/examples/let_unit.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@ error: this let-binding has unit value. Consider omitting `let _a =`

error: aborting due to previous error(s)

error: Could not compile `clippy_tests`.

To learn more, run the command again with --verbose.
Loading