Oct 15 21:55:38.145 INFO testing riquid-0.0.1 against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 15 21:55:38.145 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 21:55:38.350 INFO blam! 821bfe6e3998d8524d76ed0e7d39b65d287f7c10b502d815e3e361e8bdabb64c Oct 15 21:55:38.352 INFO running `"docker" "start" "-a" "821bfe6e3998d8524d76ed0e7d39b65d287f7c10b502d815e3e361e8bdabb64c"` Oct 15 21:55:38.731 INFO kablam! usermod: no changes Oct 15 21:55:38.783 INFO kablam! Compiling riquid v0.0.1 (/source) Oct 15 21:55:39.457 INFO kablam! warning: struct is never constructed: `Scanner` Oct 15 21:55:39.457 INFO kablam! --> src/scanner.rs:4:1 Oct 15 21:55:39.457 INFO kablam! | Oct 15 21:55:39.457 INFO kablam! 4 | pub struct Scanner<'t> { Oct 15 21:55:39.457 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.457 INFO kablam! | Oct 15 21:55:39.458 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 21:55:39.458 INFO kablam! Oct 15 21:55:39.458 INFO kablam! warning: method is never used: `new` Oct 15 21:55:39.458 INFO kablam! --> src/scanner.rs:11:5 Oct 15 21:55:39.458 INFO kablam! | Oct 15 21:55:39.458 INFO kablam! 11 | pub fn new<'a>(source: &'a str) -> Scanner<'a> { Oct 15 21:55:39.458 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.458 INFO kablam! Oct 15 21:55:39.458 INFO kablam! warning: method is never used: `position` Oct 15 21:55:39.458 INFO kablam! --> src/scanner.rs:19:5 Oct 15 21:55:39.458 INFO kablam! | Oct 15 21:55:39.458 INFO kablam! 19 | pub fn position(&self) -> usize { Oct 15 21:55:39.458 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.458 INFO kablam! Oct 15 21:55:39.458 INFO kablam! warning: method is never used: `is_eos` Oct 15 21:55:39.458 INFO kablam! --> src/scanner.rs:23:5 Oct 15 21:55:39.458 INFO kablam! | Oct 15 21:55:39.458 INFO kablam! 23 | pub fn is_eos(&self) -> bool { Oct 15 21:55:39.458 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.459 INFO kablam! warning: method is never used: `skip` Oct 15 21:55:39.459 INFO kablam! --> src/scanner.rs:27:5 Oct 15 21:55:39.459 INFO kablam! | Oct 15 21:55:39.459 INFO kablam! 27 | pub fn skip(&self, n: usize) { Oct 15 21:55:39.459 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.459 INFO kablam! warning: method is never used: `rest` Oct 15 21:55:39.459 INFO kablam! --> src/scanner.rs:32:5 Oct 15 21:55:39.459 INFO kablam! | Oct 15 21:55:39.459 INFO kablam! 32 | pub fn rest(&self) -> Option<&str> { Oct 15 21:55:39.459 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.459 INFO kablam! warning: method is never used: `get_char` Oct 15 21:55:39.459 INFO kablam! --> src/scanner.rs:37:5 Oct 15 21:55:39.459 INFO kablam! | Oct 15 21:55:39.459 INFO kablam! 37 | pub fn get_char(&self) -> Option<&str> { Oct 15 21:55:39.459 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.459 INFO kablam! warning: method is never used: `scan` Oct 15 21:55:39.459 INFO kablam! --> src/scanner.rs:47:5 Oct 15 21:55:39.459 INFO kablam! | Oct 15 21:55:39.459 INFO kablam! 47 | pub fn scan(&self, pattern: &::regex::Regex) -> Option<&str> { Oct 15 21:55:39.459 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.459 INFO kablam! warning: method is never used: `get_match` Oct 15 21:55:39.459 INFO kablam! --> src/scanner.rs:56:5 Oct 15 21:55:39.459 INFO kablam! | Oct 15 21:55:39.459 INFO kablam! 56 | fn get_match<'a>(&'a self, source: &'a str, captures: &::regex::Captures) -> Option<&str> { Oct 15 21:55:39.459 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.459 INFO kablam! warning: method is never used: `leading_chars` Oct 15 21:55:39.459 INFO kablam! --> src/scanner.rs:69:5 Oct 15 21:55:39.459 INFO kablam! | Oct 15 21:55:39.459 INFO kablam! 69 | fn leading_chars(&self, string: &str) -> usize { Oct 15 21:55:39.459 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.459 INFO kablam! warning: method is never used: `raw` Oct 15 21:55:39.459 INFO kablam! --> src/scanner.rs:73:5 Oct 15 21:55:39.459 INFO kablam! | Oct 15 21:55:39.459 INFO kablam! 73 | fn raw(&self) -> &str { Oct 15 21:55:39.459 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 15 21:55:39.459 INFO kablam! Oct 15 21:55:39.483 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.73s Oct 15 21:55:39.487 INFO kablam! su: No module specific data is present Oct 15 21:55:39.779 INFO running `"docker" "rm" "-f" "821bfe6e3998d8524d76ed0e7d39b65d287f7c10b502d815e3e361e8bdabb64c"` Oct 15 21:55:39.879 INFO blam! 821bfe6e3998d8524d76ed0e7d39b65d287f7c10b502d815e3e361e8bdabb64c Oct 15 21:55:39.883 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 21:55:40.098 INFO blam! cc229bf25fbf7c8bcbbac278c2cd9909edbf437c214a438ba105c7f1619eee05 Oct 15 21:55:40.098 INFO running `"docker" "start" "-a" "cc229bf25fbf7c8bcbbac278c2cd9909edbf437c214a438ba105c7f1619eee05"` Oct 15 21:55:40.635 INFO kablam! usermod: no changes Oct 15 21:55:40.673 INFO kablam! Compiling riquid v0.0.1 (/source) Oct 15 21:55:42.540 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.89s Oct 15 21:55:42.543 INFO kablam! su: No module specific data is present Oct 15 21:55:42.853 INFO running `"docker" "rm" "-f" "cc229bf25fbf7c8bcbbac278c2cd9909edbf437c214a438ba105c7f1619eee05"` Oct 15 21:55:42.945 INFO blam! cc229bf25fbf7c8bcbbac278c2cd9909edbf437c214a438ba105c7f1619eee05 Oct 15 21:55:42.954 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 21:55:43.195 INFO blam! f858d21b7031be72edfd920f0485fe6cb90b0545d9fb7cc9047d41a07eb4de11 Oct 15 21:55:43.197 INFO running `"docker" "start" "-a" "f858d21b7031be72edfd920f0485fe6cb90b0545d9fb7cc9047d41a07eb4de11"` Oct 15 21:55:43.960 INFO kablam! usermod: no changes Oct 15 21:55:44.046 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.04s Oct 15 21:55:44.060 INFO kablam! Running /target/debug/deps/riquid-08c7acc90ecb159f Oct 15 21:55:44.068 INFO blam! Oct 15 21:55:44.069 INFO blam! running 9 tests Oct 15 21:55:44.088 INFO blam! test scanner::tests::is_eos_is_true_when_at_the_end_of_a_string ... ok Oct 15 21:55:44.088 INFO blam! test scanner::tests::get_char_when_eos_returns_none ... ok Oct 15 21:55:44.088 INFO blam! test scanner::tests::get_char_returns_the_current_character_and_pushes_the_index ... ok Oct 15 21:55:44.091 INFO blam! test scanner::tests::new_returns_a_new_scanner ... ok Oct 15 21:55:44.096 INFO blam! test scanner::tests::scan_returns_none_when_not_found ... ok Oct 15 21:55:44.097 INFO blam! test scanner::tests::rest_returns_all_characters_from_the_current_position ... ok Oct 15 21:55:44.102 INFO blam! test scanner::tests::skip_moves_n_characters_ahead ... ok Oct 15 21:55:44.105 INFO blam! test scanner::tests::is_eos_when_not_at_the_end_of_a_string ... ok Oct 15 21:55:44.114 INFO blam! test scanner::tests::scan_retrieves_tokens_from_the_current_position_until_the_end ... ok Oct 15 21:55:44.114 INFO blam! Oct 15 21:55:44.114 INFO kablam! Doc-tests riquid Oct 15 21:55:44.114 INFO blam! test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 15 21:55:44.114 INFO blam! Oct 15 21:55:45.386 INFO blam! Oct 15 21:55:45.386 INFO blam! running 0 tests Oct 15 21:55:45.386 INFO blam! Oct 15 21:55:45.386 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 15 21:55:45.386 INFO blam! Oct 15 21:55:45.393 INFO kablam! su: No module specific data is present Oct 15 21:55:46.273 INFO running `"docker" "rm" "-f" "f858d21b7031be72edfd920f0485fe6cb90b0545d9fb7cc9047d41a07eb4de11"` Oct 15 21:55:46.451 INFO blam! f858d21b7031be72edfd920f0485fe6cb90b0545d9fb7cc9047d41a07eb4de11