Oct 15 07:49:06.075 INFO testing PhdTrollSlayer/trabalho-filas-pilhas against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 15 07:49:06.076 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt build --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 15 07:49:06.382 INFO blam! eea319dae5758391af54f952e2c0057751cbc97701c86f2f8bb05ee03f939aa0 Oct 15 07:49:06.389 INFO running `"docker" "start" "-a" "eea319dae5758391af54f952e2c0057751cbc97701c86f2f8bb05ee03f939aa0"` Oct 15 07:49:06.975 INFO kablam! usermod: no changes Oct 15 07:49:07.022 INFO kablam! Compiling pilhas v0.1.0 (/source) Oct 15 07:49:07.462 INFO kablam! warning: unused import: `Stdio` Oct 15 07:49:07.462 INFO kablam! --> src/main.rs:4:29 Oct 15 07:49:07.462 INFO kablam! | Oct 15 07:49:07.462 INFO kablam! 4 | use std::process::{Command, Stdio}; Oct 15 07:49:07.462 INFO kablam! | ^^^^^ Oct 15 07:49:07.462 INFO kablam! | Oct 15 07:49:07.462 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 07:49:07.462 INFO kablam! Oct 15 07:49:07.462 INFO kablam! warning: unused import: `pilha::*` Oct 15 07:49:07.462 INFO kablam! --> src/main.rs:7:5 Oct 15 07:49:07.462 INFO kablam! | Oct 15 07:49:07.462 INFO kablam! 7 | use pilha::*; Oct 15 07:49:07.462 INFO kablam! | ^^^^^^^^ Oct 15 07:49:07.462 INFO kablam! Oct 15 07:49:07.462 INFO kablam! warning: unused import: `node::*` Oct 15 07:49:07.463 INFO kablam! --> src/main.rs:8:5 Oct 15 07:49:07.463 INFO kablam! | Oct 15 07:49:07.463 INFO kablam! 8 | use node::*; Oct 15 07:49:07.463 INFO kablam! | ^^^^^^^ Oct 15 07:49:07.463 INFO kablam! Oct 15 07:49:07.553 INFO kablam! warning: unused variable: `loader` Oct 15 07:49:07.553 INFO kablam! --> src/main.rs:55:25 Oct 15 07:49:07.553 INFO kablam! | Oct 15 07:49:07.553 INFO kablam! 55 | let loader = Command::new("sh") Oct 15 07:49:07.553 INFO kablam! | ^^^^^^ help: consider using `_loader` instead Oct 15 07:49:07.553 INFO kablam! | Oct 15 07:49:07.553 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 07:49:07.553 INFO kablam! Oct 15 07:49:07.563 INFO kablam! warning: struct is never constructed: `Pilha` Oct 15 07:49:07.563 INFO kablam! --> src/pilha.rs:5:1 Oct 15 07:49:07.563 INFO kablam! | Oct 15 07:49:07.563 INFO kablam! 5 | pub struct Pilha { Oct 15 07:49:07.563 INFO kablam! | ^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:07.563 INFO kablam! | Oct 15 07:49:07.564 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 07:49:07.564 INFO kablam! Oct 15 07:49:07.564 INFO kablam! warning: method is never used: `new` Oct 15 07:49:07.564 INFO kablam! --> src/pilha.rs:10:5 Oct 15 07:49:07.564 INFO kablam! | Oct 15 07:49:07.564 INFO kablam! 10 | pub fn new() -> Pilha { Oct 15 07:49:07.564 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:07.564 INFO kablam! Oct 15 07:49:07.564 INFO kablam! warning: method is never used: `push` Oct 15 07:49:07.564 INFO kablam! --> src/pilha.rs:16:5 Oct 15 07:49:07.564 INFO kablam! | Oct 15 07:49:07.564 INFO kablam! 16 | pub fn push(&mut self, mut new_head: Box>) -> Option<&T>{ Oct 15 07:49:07.564 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:07.564 INFO kablam! Oct 15 07:49:07.564 INFO kablam! warning: method is never used: `pop` Oct 15 07:49:07.564 INFO kablam! --> src/pilha.rs:30:5 Oct 15 07:49:07.564 INFO kablam! | Oct 15 07:49:07.564 INFO kablam! 30 | pub fn pop(&mut self) { Oct 15 07:49:07.564 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:07.564 INFO kablam! Oct 15 07:49:07.564 INFO kablam! warning: method is never used: `top` Oct 15 07:49:07.564 INFO kablam! --> src/pilha.rs:35:5 Oct 15 07:49:07.564 INFO kablam! | Oct 15 07:49:07.564 INFO kablam! 35 | pub fn top(&mut self) -> Option<&T>{ Oct 15 07:49:07.564 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:07.564 INFO kablam! Oct 15 07:49:07.564 INFO kablam! warning: method is never used: `new` Oct 15 07:49:07.564 INFO kablam! --> src/node.rs:8:5 Oct 15 07:49:07.564 INFO kablam! | Oct 15 07:49:07.564 INFO kablam! 8 | pub fn new(v: T) -> Node { Oct 15 07:49:07.564 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:07.564 INFO kablam! Oct 15 07:49:07.564 INFO kablam! warning: method is never used: `front` Oct 15 07:49:07.564 INFO kablam! --> src/fila.rs:33:5 Oct 15 07:49:07.564 INFO kablam! | Oct 15 07:49:07.564 INFO kablam! 33 | pub fn front(&mut self) -> &T { Oct 15 07:49:07.564 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:07.564 INFO kablam! Oct 15 07:49:08.491 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.49s Oct 15 07:49:08.499 INFO kablam! su: No module specific data is present Oct 15 07:49:09.521 INFO running `"docker" "rm" "-f" "eea319dae5758391af54f952e2c0057751cbc97701c86f2f8bb05ee03f939aa0"` Oct 15 07:49:09.847 INFO blam! eea319dae5758391af54f952e2c0057751cbc97701c86f2f8bb05ee03f939aa0 Oct 15 07:49:09.849 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen --no-run" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 15 07:49:10.407 INFO blam! 7ab2733c2afd49e4762847ea7f39e39d2b72a627ae6e0780a495f24e6840e8f3 Oct 15 07:49:10.413 INFO running `"docker" "start" "-a" "7ab2733c2afd49e4762847ea7f39e39d2b72a627ae6e0780a495f24e6840e8f3"` Oct 15 07:49:12.906 INFO kablam! usermod: no changes Oct 15 07:49:12.991 INFO kablam! Compiling pilhas v0.1.0 (/source) Oct 15 07:49:13.619 INFO kablam! warning: unused import: `Stdio` Oct 15 07:49:13.619 INFO kablam! --> src/main.rs:4:29 Oct 15 07:49:13.619 INFO kablam! | Oct 15 07:49:13.619 INFO kablam! 4 | use std::process::{Command, Stdio}; Oct 15 07:49:13.619 INFO kablam! | ^^^^^ Oct 15 07:49:13.619 INFO kablam! | Oct 15 07:49:13.619 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 07:49:13.619 INFO kablam! Oct 15 07:49:13.619 INFO kablam! warning: unused import: `pilha::*` Oct 15 07:49:13.619 INFO kablam! --> src/main.rs:7:5 Oct 15 07:49:13.619 INFO kablam! | Oct 15 07:49:13.619 INFO kablam! 7 | use pilha::*; Oct 15 07:49:13.619 INFO kablam! | ^^^^^^^^ Oct 15 07:49:13.619 INFO kablam! Oct 15 07:49:13.619 INFO kablam! warning: unused import: `node::*` Oct 15 07:49:13.619 INFO kablam! --> src/main.rs:8:5 Oct 15 07:49:13.619 INFO kablam! | Oct 15 07:49:13.619 INFO kablam! 8 | use node::*; Oct 15 07:49:13.619 INFO kablam! | ^^^^^^^ Oct 15 07:49:13.619 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: unused variable: `loader` Oct 15 07:49:13.703 INFO kablam! --> src/main.rs:55:25 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 55 | let loader = Command::new("sh") Oct 15 07:49:13.703 INFO kablam! | ^^^^^^ help: consider using `_loader` instead Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 07:49:13.703 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: struct is never constructed: `Pilha` Oct 15 07:49:13.703 INFO kablam! --> src/pilha.rs:5:1 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 5 | pub struct Pilha { Oct 15 07:49:13.703 INFO kablam! | ^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 07:49:13.703 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: method is never used: `new` Oct 15 07:49:13.703 INFO kablam! --> src/pilha.rs:10:5 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 10 | pub fn new() -> Pilha { Oct 15 07:49:13.703 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:13.703 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: method is never used: `push` Oct 15 07:49:13.703 INFO kablam! --> src/pilha.rs:16:5 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 16 | pub fn push(&mut self, mut new_head: Box>) -> Option<&T>{ Oct 15 07:49:13.703 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:13.703 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: method is never used: `pop` Oct 15 07:49:13.703 INFO kablam! --> src/pilha.rs:30:5 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 30 | pub fn pop(&mut self) { Oct 15 07:49:13.703 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:13.703 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: method is never used: `top` Oct 15 07:49:13.703 INFO kablam! --> src/pilha.rs:35:5 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 35 | pub fn top(&mut self) -> Option<&T>{ Oct 15 07:49:13.703 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:13.703 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: method is never used: `new` Oct 15 07:49:13.703 INFO kablam! --> src/node.rs:8:5 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 8 | pub fn new(v: T) -> Node { Oct 15 07:49:13.703 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:13.703 INFO kablam! Oct 15 07:49:13.703 INFO kablam! warning: method is never used: `front` Oct 15 07:49:13.703 INFO kablam! --> src/fila.rs:33:5 Oct 15 07:49:13.703 INFO kablam! | Oct 15 07:49:13.703 INFO kablam! 33 | pub fn front(&mut self) -> &T { Oct 15 07:49:13.711 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 07:49:13.711 INFO kablam! Oct 15 07:49:14.097 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.16s Oct 15 07:49:14.105 INFO kablam! su: No module specific data is present Oct 15 07:49:14.875 INFO running `"docker" "rm" "-f" "7ab2733c2afd49e4762847ea7f39e39d2b72a627ae6e0780a495f24e6840e8f3"` Oct 15 07:49:15.235 INFO blam! 7ab2733c2afd49e4762847ea7f39e39d2b72a627ae6e0780a495f24e6840e8f3 Oct 15 07:49:15.245 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 15 07:49:15.703 INFO blam! 4d6fb27ffa9bbec57784b31af7825713b31957340880d20e55b0e16fbbed186e Oct 15 07:49:15.705 INFO running `"docker" "start" "-a" "4d6fb27ffa9bbec57784b31af7825713b31957340880d20e55b0e16fbbed186e"` Oct 15 07:49:16.827 INFO kablam! usermod: no changes Oct 15 07:49:16.905 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.04s Oct 15 07:49:16.915 INFO kablam! Running /target/debug/deps/pilhas-c49a5aba79e95cf4 Oct 15 07:49:16.916 INFO blam! Oct 15 07:49:16.916 INFO blam! running 0 tests Oct 15 07:49:16.916 INFO blam! Oct 15 07:49:16.916 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 15 07:49:16.916 INFO blam! Oct 15 07:49:16.919 INFO kablam! su: No module specific data is present Oct 15 07:49:18.027 INFO running `"docker" "rm" "-f" "4d6fb27ffa9bbec57784b31af7825713b31957340880d20e55b0e16fbbed186e"` Oct 15 07:49:18.257 INFO blam! 4d6fb27ffa9bbec57784b31af7825713b31957340880d20e55b0e16fbbed186e