Oct 14 22:38:21.402 INFO testing dlin94/CSAPP-Rust against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 14 22:38:21.402 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/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 14 22:38:21.603 INFO blam! 6b80f2b4c15c196d45deaed9bdf90fc4115bcdfb6444417517a85c02d23c0c64 Oct 14 22:38:21.603 INFO running `"docker" "start" "-a" "6b80f2b4c15c196d45deaed9bdf90fc4115bcdfb6444417517a85c02d23c0c64"` Oct 14 22:38:22.041 INFO kablam! usermod: no changes Oct 14 22:38:22.071 INFO kablam! Compiling csapp v0.1.0 (/source) Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `unsigned_decrement_infinite_loop` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/overflow.rs:17:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 17 | pub fn unsigned_decrement_infinite_loop() { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `uadd_ok` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/overflow.rs:34:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 34 | pub fn uadd_ok(x: u32, y: u32) -> bool { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `tadd_ok` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/overflow.rs:47:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 47 | pub fn tadd_ok(x: i32, y: i32) -> bool { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `tsub_ok` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/overflow.rs:66:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 66 | pub fn tsub_ok(x: i32, y: i32) -> bool { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `tmult_ok` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/overflow.rs:85:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 85 | pub fn tmult_ok(x: i32, y: i32) -> bool { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `tmult_ok_using_64_bit` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/overflow.rs:102:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 102 | pub fn tmult_ok_using_64_bit(x: i32, y: i32) -> bool { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `odd_ones` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/bit_mask.rs:20:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 20 | pub fn odd_ones(x: u32) -> u32 { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `leftmost_one` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/bit_mask.rs:55:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 55 | pub fn leftmost_one(x: u32) -> u32 { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.330 INFO kablam! warning: function is never used: `rotate_left` Oct 14 22:38:22.330 INFO kablam! --> src/ch2/bit_mask.rs:82:1 Oct 14 22:38:22.330 INFO kablam! | Oct 14 22:38:22.330 INFO kablam! 82 | pub fn rotate_left(x: u32, n: i32) -> u32 { Oct 14 22:38:22.330 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:22.330 INFO kablam! Oct 14 22:38:22.331 INFO kablam! warning: comparison is useless due to type limits Oct 14 22:38:22.331 INFO kablam! --> src/ch2/overflow.rs:20:11 Oct 14 22:38:22.331 INFO kablam! | Oct 14 22:38:22.331 INFO kablam! 20 | while i >= 0 { // Infinite loop! Oct 14 22:38:22.331 INFO kablam! | ^^^^^^ Oct 14 22:38:22.331 INFO kablam! | Oct 14 22:38:22.331 INFO kablam! = note: #[warn(unused_comparisons)] on by default Oct 14 22:38:22.331 INFO kablam! Oct 14 22:38:22.566 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.50s Oct 14 22:38:22.566 INFO kablam! su: No module specific data is present Oct 14 22:38:22.855 INFO running `"docker" "rm" "-f" "6b80f2b4c15c196d45deaed9bdf90fc4115bcdfb6444417517a85c02d23c0c64"` Oct 14 22:38:22.945 INFO blam! 6b80f2b4c15c196d45deaed9bdf90fc4115bcdfb6444417517a85c02d23c0c64 Oct 14 22:38:22.948 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/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 14 22:38:23.147 INFO blam! e31e4f7488521d8f93509274c4fe8394a429254d1e767f52f49dc050e8da1cd9 Oct 14 22:38:23.153 INFO running `"docker" "start" "-a" "e31e4f7488521d8f93509274c4fe8394a429254d1e767f52f49dc050e8da1cd9"` Oct 14 22:38:23.829 INFO kablam! usermod: no changes Oct 14 22:38:23.858 INFO kablam! Compiling csapp v0.1.0 (/source) Oct 14 22:38:24.167 INFO kablam! warning: function is never used: `unsigned_decrement_infinite_loop` Oct 14 22:38:24.167 INFO kablam! --> src/ch2/overflow.rs:17:1 Oct 14 22:38:24.167 INFO kablam! | Oct 14 22:38:24.167 INFO kablam! 17 | pub fn unsigned_decrement_infinite_loop() { Oct 14 22:38:24.167 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.167 INFO kablam! | Oct 14 22:38:24.167 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 22:38:24.167 INFO kablam! Oct 14 22:38:24.167 INFO kablam! warning: function is never used: `uadd_ok` Oct 14 22:38:24.167 INFO kablam! --> src/ch2/overflow.rs:34:1 Oct 14 22:38:24.167 INFO kablam! | Oct 14 22:38:24.167 INFO kablam! 34 | pub fn uadd_ok(x: u32, y: u32) -> bool { Oct 14 22:38:24.167 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.167 INFO kablam! Oct 14 22:38:24.167 INFO kablam! warning: function is never used: `tadd_ok` Oct 14 22:38:24.168 INFO kablam! --> src/ch2/overflow.rs:47:1 Oct 14 22:38:24.168 INFO kablam! | Oct 14 22:38:24.168 INFO kablam! 47 | pub fn tadd_ok(x: i32, y: i32) -> bool { Oct 14 22:38:24.168 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.168 INFO kablam! Oct 14 22:38:24.171 INFO kablam! warning: function is never used: `tsub_ok` Oct 14 22:38:24.171 INFO kablam! --> src/ch2/overflow.rs:66:1 Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! 66 | pub fn tsub_ok(x: i32, y: i32) -> bool { Oct 14 22:38:24.172 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.172 INFO kablam! Oct 14 22:38:24.172 INFO kablam! warning: function is never used: `tmult_ok` Oct 14 22:38:24.172 INFO kablam! --> src/ch2/overflow.rs:85:1 Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! 85 | pub fn tmult_ok(x: i32, y: i32) -> bool { Oct 14 22:38:24.172 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.172 INFO kablam! Oct 14 22:38:24.172 INFO kablam! warning: function is never used: `tmult_ok_using_64_bit` Oct 14 22:38:24.172 INFO kablam! --> src/ch2/overflow.rs:102:1 Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! 102 | pub fn tmult_ok_using_64_bit(x: i32, y: i32) -> bool { Oct 14 22:38:24.172 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.172 INFO kablam! Oct 14 22:38:24.172 INFO kablam! warning: function is never used: `odd_ones` Oct 14 22:38:24.172 INFO kablam! --> src/ch2/bit_mask.rs:20:1 Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! 20 | pub fn odd_ones(x: u32) -> u32 { Oct 14 22:38:24.172 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.172 INFO kablam! Oct 14 22:38:24.172 INFO kablam! warning: function is never used: `leftmost_one` Oct 14 22:38:24.172 INFO kablam! --> src/ch2/bit_mask.rs:55:1 Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! 55 | pub fn leftmost_one(x: u32) -> u32 { Oct 14 22:38:24.172 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.172 INFO kablam! Oct 14 22:38:24.172 INFO kablam! warning: function is never used: `rotate_left` Oct 14 22:38:24.172 INFO kablam! --> src/ch2/bit_mask.rs:82:1 Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! 82 | pub fn rotate_left(x: u32, n: i32) -> u32 { Oct 14 22:38:24.172 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:38:24.172 INFO kablam! Oct 14 22:38:24.172 INFO kablam! warning: comparison is useless due to type limits Oct 14 22:38:24.172 INFO kablam! --> src/ch2/overflow.rs:20:11 Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! 20 | while i >= 0 { // Infinite loop! Oct 14 22:38:24.172 INFO kablam! | ^^^^^^ Oct 14 22:38:24.172 INFO kablam! | Oct 14 22:38:24.172 INFO kablam! = note: #[warn(unused_comparisons)] on by default Oct 14 22:38:24.172 INFO kablam! Oct 14 22:38:24.549 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.70s Oct 14 22:38:24.550 INFO kablam! su: No module specific data is present Oct 14 22:38:24.885 INFO running `"docker" "rm" "-f" "e31e4f7488521d8f93509274c4fe8394a429254d1e767f52f49dc050e8da1cd9"` Oct 14 22:38:24.955 INFO blam! e31e4f7488521d8f93509274c4fe8394a429254d1e767f52f49dc050e8da1cd9 Oct 14 22:38:24.957 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/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 14 22:38:25.144 INFO blam! 894efd64d85d94f05ff475f0ee88ad2a39b07dd0a48a29b0d9ae0b3dd446694d Oct 14 22:38:25.148 INFO running `"docker" "start" "-a" "894efd64d85d94f05ff475f0ee88ad2a39b07dd0a48a29b0d9ae0b3dd446694d"` Oct 14 22:38:25.650 INFO kablam! usermod: no changes Oct 14 22:38:25.669 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.00s Oct 14 22:38:25.669 INFO kablam! Running /target/debug/deps/csapp-67d3ebca360b52a5 Oct 14 22:38:25.678 INFO kablam! su: No module specific data is present Oct 14 22:38:25.679 INFO blam! Oct 14 22:38:25.679 INFO blam! running 0 tests Oct 14 22:38:25.679 INFO blam! Oct 14 22:38:25.679 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 22:38:25.679 INFO blam! Oct 14 22:38:25.917 INFO running `"docker" "rm" "-f" "894efd64d85d94f05ff475f0ee88ad2a39b07dd0a48a29b0d9ae0b3dd446694d"` Oct 14 22:38:26.030 INFO blam! 894efd64d85d94f05ff475f0ee88ad2a39b07dd0a48a29b0d9ae0b3dd446694d