[INFO] crate lsio 0.1.18 is already in cache [INFO] testing lsio-0.1.18 against beta-2019-09-28 for beta-1.39-1 [INFO] extracting crate lsio 0.1.18 into work/builds/worker-7/source [INFO] validating manifest of crates.io crate lsio 0.1.18 on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate lsio 0.1.18 [INFO] finished tweaking crates.io crate lsio 0.1.18 [INFO] tweaked toml for crates.io crate lsio 0.1.18 written to work/builds/worker-7/source/Cargo.toml [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-7/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] 0496080de41bfa3059a6317f2479f9f88cc2df43e27fdc2e490cc9ba06023953 [INFO] running `"docker" "start" "-a" "0496080de41bfa3059a6317f2479f9f88cc2df43e27fdc2e490cc9ba06023953"` [INFO] [stderr] Compiling toml v0.2.1 [INFO] [stderr] Compiling termios v0.2.2 [INFO] [stderr] Compiling errno v0.1.8 [INFO] [stderr] Compiling rpassword v0.2.3 [INFO] [stderr] Compiling lsio v0.1.18 (/opt/rustwide/workdir) [INFO] [stderr] warning: a macro named `println_color_quiet` has already been exported [INFO] [stderr] --> src/macros.rs:100:1 [INFO] [stderr] | [INFO] [stderr] 100 | / macro_rules! println_color_quiet { [INFO] [stderr] 101 | | ($quiet: expr, $color:expr, $fmt:expr) => { [INFO] [stderr] 102 | | if !$quiet { [INFO] [stderr] 103 | | print_color!($color, concat!($fmt, "\n")); [INFO] [stderr] ... | [INFO] [stderr] 110 | | }; [INFO] [stderr] 111 | | } [INFO] [stderr] | |_^ `println_color_quiet` already exported [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(duplicate_macro_exports)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition! [INFO] [stderr] = note: for more information, see issue #35896 [INFO] [stderr] note: previous macro export is now shadowed [INFO] [stderr] --> src/macros.rs:52:1 [INFO] [stderr] | [INFO] [stderr] 52 | / macro_rules! println_color_quiet { [INFO] [stderr] 53 | | ($quiet:expr, $color:expr, $($arg:tt)*) => { [INFO] [stderr] 54 | | { [INFO] [stderr] 55 | | if !$quiet { [INFO] [stderr] ... | [INFO] [stderr] 62 | | }; [INFO] [stderr] 63 | | } [INFO] [stderr] | |_^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:35:22 [INFO] [stderr] | [INFO] [stderr] 35 | output = try!(Command::new(cmd).args(args).output()); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:42:22 [INFO] [stderr] | [INFO] [stderr] 42 | output = try!(run_cli(arg_string)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:46:18 [INFO] [stderr] | [INFO] [stderr] 46 | output = try!(run_cli(cmd.to_string())); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:64:18 [INFO] [stderr] | [INFO] [stderr] 64 | let output = try!(Command::new("sh").arg("-c").arg(&cmd_line).output()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:31:18 [INFO] [stderr] | [INFO] [stderr] 31 | let socket = try!(UdpSocket::bind("0.0.0.0:0")); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:33:13 [INFO] [stderr] | [INFO] [stderr] 33 | let _ = try!(socket.connect(if dns.is_empty() {GOOGLE_DNS} else {&ip})); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:34:16 [INFO] [stderr] | [INFO] [stderr] 34 | let addr = try!(socket.local_addr()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:54:21 [INFO] [stderr] | [INFO] [stderr] 54 | let s = try!(slice.to_str()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::mem::uninitialized': use `mem::MaybeUninit` instead [INFO] [stderr] --> src/system.rs:102:38 [INFO] [stderr] | [INFO] [stderr] 102 | let mut utsname: libc::utsname = mem::uninitialized(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.50s [INFO] running `"docker" "inspect" "0496080de41bfa3059a6317f2479f9f88cc2df43e27fdc2e490cc9ba06023953"` [INFO] running `"docker" "rm" "-f" "0496080de41bfa3059a6317f2479f9f88cc2df43e27fdc2e490cc9ba06023953"` [INFO] [stdout] 0496080de41bfa3059a6317f2479f9f88cc2df43e27fdc2e490cc9ba06023953 [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-7/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2019-09-28" "test" "--frozen" "--no-run"` [INFO] [stdout] b8143860fadb0d926de651ea2137cb248a0b589da3fb6371a4be564dd48b26c0 [INFO] running `"docker" "start" "-a" "b8143860fadb0d926de651ea2137cb248a0b589da3fb6371a4be564dd48b26c0"` [INFO] [stderr] Compiling lsio v0.1.18 (/opt/rustwide/workdir) [INFO] [stderr] warning: a macro named `println_color_quiet` has already been exported [INFO] [stderr] --> src/macros.rs:100:1 [INFO] [stderr] | [INFO] [stderr] 100 | / macro_rules! println_color_quiet { [INFO] [stderr] 101 | | ($quiet: expr, $color:expr, $fmt:expr) => { [INFO] [stderr] 102 | | if !$quiet { [INFO] [stderr] 103 | | print_color!($color, concat!($fmt, "\n")); [INFO] [stderr] ... | [INFO] [stderr] 110 | | }; [INFO] [stderr] 111 | | } [INFO] [stderr] | |_^ `println_color_quiet` already exported [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(duplicate_macro_exports)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in the 2018 edition! [INFO] [stderr] = note: for more information, see issue #35896 [INFO] [stderr] note: previous macro export is now shadowed [INFO] [stderr] --> src/macros.rs:52:1 [INFO] [stderr] | [INFO] [stderr] 52 | / macro_rules! println_color_quiet { [INFO] [stderr] 53 | | ($quiet:expr, $color:expr, $($arg:tt)*) => { [INFO] [stderr] 54 | | { [INFO] [stderr] 55 | | if !$quiet { [INFO] [stderr] ... | [INFO] [stderr] 62 | | }; [INFO] [stderr] 63 | | } [INFO] [stderr] | |_^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:35:22 [INFO] [stderr] | [INFO] [stderr] 35 | output = try!(Command::new(cmd).args(args).output()); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:42:22 [INFO] [stderr] | [INFO] [stderr] 42 | output = try!(run_cli(arg_string)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:46:18 [INFO] [stderr] | [INFO] [stderr] 46 | output = try!(run_cli(cmd.to_string())); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/commands.rs:64:18 [INFO] [stderr] | [INFO] [stderr] 64 | let output = try!(Command::new("sh").arg("-c").arg(&cmd_line).output()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:31:18 [INFO] [stderr] | [INFO] [stderr] 31 | let socket = try!(UdpSocket::bind("0.0.0.0:0")); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:33:13 [INFO] [stderr] | [INFO] [stderr] 33 | let _ = try!(socket.connect(if dns.is_empty() {GOOGLE_DNS} else {&ip})); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:34:16 [INFO] [stderr] | [INFO] [stderr] 34 | let addr = try!(socket.local_addr()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/system.rs:54:21 [INFO] [stderr] | [INFO] [stderr] 54 | let s = try!(slice.to_str()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::mem::uninitialized': use `mem::MaybeUninit` instead [INFO] [stderr] --> src/system.rs:102:38 [INFO] [stderr] | [INFO] [stderr] 102 | let mut utsname: libc::utsname = mem::uninitialized(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.76s [INFO] running `"docker" "inspect" "b8143860fadb0d926de651ea2137cb248a0b589da3fb6371a4be564dd48b26c0"` [INFO] running `"docker" "rm" "-f" "b8143860fadb0d926de651ea2137cb248a0b589da3fb6371a4be564dd48b26c0"` [INFO] [stdout] b8143860fadb0d926de651ea2137cb248a0b589da3fb6371a4be564dd48b26c0 [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-7/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2019-09-28" "test" "--frozen"` [INFO] [stdout] 440ffc42eb323f046a969f00c5cc3a7d543835a2d8ef2c7b113a89c518601b0d [INFO] running `"docker" "start" "-a" "440ffc42eb323f046a969f00c5cc3a7d543835a2d8ef2c7b113a89c518601b0d"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.03s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/lsio-98b0d99c741ebecf [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] Doc-tests lsio [INFO] [stdout] [INFO] [stdout] running 6 tests [INFO] [stdout] test src/config.rs - config::ConfigFile (line 45) ... FAILED [INFO] [stdout] test src/macros.rs - repeat_color (line 118) ... FAILED [INFO] [stdout] test src/macros.rs - repeat (line 177) ... FAILED [INFO] [stdout] test src/macros.rs - repeat_color_with_ends (line 141) ... FAILED [INFO] [stdout] test src/commands.rs - commands::run_cli (line 58) ... FAILED [INFO] [stdout] test src/commands.rs - commands::run_args (line 24) ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- src/config.rs - config::ConfigFile (line 45) stdout ---- [INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type or module `Config` [INFO] [stdout] --> src/config.rs:47:19 [INFO] [stdout] | [INFO] [stdout] 4 | let mut cfg = Config::default(); [INFO] [stdout] | ^^^^^^ use of undeclared type or module `Config` [INFO] [stdout] [INFO] [stdout] error[E0411]: cannot find type `Self` in this scope [INFO] [stdout] --> src/config.rs:46:43 [INFO] [stdout] | [INFO] [stdout] 3 | fn from_toml(toml: toml::Value) -> Result { [INFO] [stdout] | ^^^^ `Self` is only available in impls, traits, and type definitions [INFO] [stdout] [INFO] [stdout] error[E0107]: wrong number of type arguments: expected 2, found 1 [INFO] [stdout] --> src/config.rs:46:36 [INFO] [stdout] | [INFO] [stdout] 3 | fn from_toml(toml: toml::Value) -> Result { [INFO] [stdout] | ^^^^^^^^^^^^ expected 2 type arguments [INFO] [stdout] [INFO] [stdout] error: aborting due to 3 previous errors [INFO] [stdout] [INFO] [stdout] Some errors have detailed explanations: E0107, E0411, E0433. [INFO] [stdout] For more information about an error, try `rustc --explain E0107`. [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/macros.rs - repeat_color (line 118) stdout ---- [INFO] [stdout] error: cannot find macro `repeat_color` in this scope [INFO] [stdout] --> src/macros.rs:119:1 [INFO] [stdout] | [INFO] [stdout] 3 | repeat_color!(term::color::RED, "=", "", 80); [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] error: aborting due to previous error [INFO] [stdout] [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/macros.rs - repeat (line 177) stdout ---- [INFO] [stdout] error: cannot find macro `repeat` in this scope [INFO] [stdout] --> src/macros.rs:178:1 [INFO] [stdout] | [INFO] [stdout] 3 | repeat!("=", "", 80); [INFO] [stdout] | ^^^^^^ [INFO] [stdout] [INFO] [stdout] error: aborting due to previous error [INFO] [stdout] [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/macros.rs - repeat_color_with_ends (line 141) stdout ---- [INFO] [stdout] error: cannot find macro `repeat_color` in this scope [INFO] [stdout] --> src/macros.rs:142:1 [INFO] [stdout] | [INFO] [stdout] 3 | repeat_color!(term::color::RED, "=", "", 80); [INFO] [stdout] | ^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] error: aborting due to previous error [INFO] [stdout] [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/commands.rs - commands::run_cli (line 58) stdout ---- [INFO] [stdout] error[E0425]: cannot find function `run_cli` in this scope [INFO] [stdout] --> src/commands.rs:59:1 [INFO] [stdout] | [INFO] [stdout] 3 | run_cli("ps aux"); [INFO] [stdout] | ^^^^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] error: aborting due to previous error [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0425`. [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] ---- src/commands.rs - commands::run_args (line 24) stdout ---- [INFO] [stdout] error[E0425]: cannot find function `run_args` in this scope [INFO] [stdout] --> src/commands.rs:28:1 [INFO] [stdout] | [INFO] [stdout] 6 | run_args("ps", &args); [INFO] [stdout] | ^^^^^^^^ not found in this scope [INFO] [stdout] [INFO] [stdout] error: aborting due to previous error [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0425`. [INFO] [stdout] Couldn't compile the test. [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] src/commands.rs - commands::run_args (line 24) [INFO] [stdout] src/commands.rs - commands::run_cli (line 58) [INFO] [stdout] src/config.rs - config::ConfigFile (line 45) [INFO] [stdout] src/macros.rs - repeat (line 177) [INFO] [stdout] src/macros.rs - repeat_color (line 118) [INFO] [stdout] src/macros.rs - repeat_color_with_ends (line 141) [INFO] [stdout] [INFO] [stdout] test result: FAILED. 0 passed; 6 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--doc' [INFO] running `"docker" "inspect" "440ffc42eb323f046a969f00c5cc3a7d543835a2d8ef2c7b113a89c518601b0d"` [INFO] running `"docker" "rm" "-f" "440ffc42eb323f046a969f00c5cc3a7d543835a2d8ef2c7b113a89c518601b0d"` [INFO] [stdout] 440ffc42eb323f046a969f00c5cc3a7d543835a2d8ef2c7b113a89c518601b0d