I added rust 1.35 to the docker image and I see this on "make check" for lib/rs:

failures:

---- src/errors.rs - errors::Error (line 106) stdout ----
error: the item `thrift` is imported redundantly
 --> src/errors.rs:107:5
  |
3 | extern crate thrift;
  | -------------------- the item `thrift` is already imported here
4 | fn main() {
5 | use thrift;
  |     ^^^^^^
  |
note: lint level defined here
 --> src/errors.rs:104:9
  |
2 | #![deny(warnings)]
  |         ^^^^^^^^
  = note: #[deny(unused_imports)] implied by #[deny(warnings)]

error: aborting due to previous error

thread 'src/errors.rs - errors::Error (line 106)' panicked at
'couldn't compile the test', src/librustdoc/test.rs:310:13
note: Run with `RUST_BACKTRACE=1` environment variable to display a backtrace.

---- src/errors.rs - errors::Error (line 60) stdout ----
error: the item `thrift` is imported redundantly
 --> src/errors.rs:61:5
  |
3 | extern crate thrift;
  | -------------------- the item `thrift` is already imported here
4 | fn main() {
5 | use thrift;
  |     ^^^^^^
  |
note: lint level defined here
 --> src/errors.rs:58:9
  |
2 | #![deny(warnings)]
  |         ^^^^^^^^
  = note: #[deny(unused_imports)] implied by #[deny(warnings)]

error: aborting due to previous error

thread 'src/errors.rs - errors::Error (line 60)' panicked at 'couldn't
compile the test', src/librustdoc/test.rs:310:13

---- src/errors.rs - errors::Error (line 136) stdout ----
error: the item `From` is imported redundantly
 --> src/errors.rs:137:5
  |
5 | use std::convert::From;
  |     ^^^^^^^^^^^^^^^^^^
  |
note: lint level defined here
 --> src/errors.rs:134:9
  |
2 | #![deny(warnings)]
  |         ^^^^^^^^
  = note: #[deny(unused_imports)] implied by #[deny(warnings)]

error: aborting due to previous error

thread 'src/errors.rs - errors::Error (line 136)' panicked at
'couldn't compile the test', src/librustdoc/test.rs:310:13

---- src/server/mod.rs - server::TProcessor (line 41) stdout ----
error: the item `thrift` is imported redundantly
 --> src/server/mod.rs:42:5
  |
3 | extern crate thrift;
  | -------------------- the item `thrift` is already imported here
4 | fn main() {
5 | use thrift;
  |     ^^^^^^
  |
note: lint level defined here
 --> src/server/mod.rs:39:9
  |
2 | #![deny(warnings)]
  |         ^^^^^^^^
  = note: #[deny(unused_imports)] implied by #[deny(warnings)]

error: aborting due to previous error

thread 'src/server/mod.rs - server::TProcessor (line 41)' panicked at
'couldn't compile the test', src/librustdoc/test.rs:310:13

---- src/protocol/stored.rs - protocol::stored::TStoredInputProtocol
(line 44) stdout ----
error: the item `thrift` is imported redundantly
 --> src/protocol/stored.rs:45:5
  |
3 | extern crate thrift;
  | -------------------- the item `thrift` is already imported here
4 | fn main() {
5 | use thrift;
  |     ^^^^^^
  |
note: lint level defined here
 --> src/protocol/stored.rs:42:9
  |
2 | #![deny(warnings)]
  |         ^^^^^^^^
  = note: #[deny(unused_imports)] implied by #[deny(warnings)]

error: aborting due to previous error

thread 'src/protocol/stored.rs -
protocol::stored::TStoredInputProtocol (line 44)' panicked at
'couldn't compile the test', src/librustdoc/test.rs:310:13

---- src/server/threaded.rs - server::threaded::TServer (line 45) stdout ----
error: the item `thrift` is imported redundantly
 --> src/server/threaded.rs:46:5
  |
3 | extern crate thrift;
  | -------------------- the item `thrift` is already imported here
4 | fn main() {
5 | use thrift;
  |     ^^^^^^
  |
note: lint level defined here
 --> src/server/threaded.rs:43:9
  |
2 | #![deny(warnings)]
  |         ^^^^^^^^
  = note: #[deny(unused_imports)] implied by #[deny(warnings)]

error: aborting due to previous error

thread 'src/server/threaded.rs - server::threaded::TServer (line 45)'
panicked at 'couldn't compile the test', src/librustdoc/test.rs:310:13


failures:
    src/errors.rs - errors::Error (line 106)
    src/errors.rs - errors::Error (line 136)
    src/errors.rs - errors::Error (line 60)
    src/protocol/stored.rs - protocol::stored::TStoredInputProtocol (line 44)
    src/server/mod.rs - server::TProcessor (line 41)
    src/server/threaded.rs - server::threaded::TServer (line 45)

test result: FAILED. 17 passed; 6 failed; 0 ignored; 0 measured; 0 filtered out

Thoughts?

Reply via email to