[INFO] cloning repository cowang4/rusty_primes [INFO] running `"git" "clone" "--bare" "git://github.com/cowang4/rusty_primes.git" "work/cache/sources/gh/cowang4/rusty_primes"` [INFO] [stderr] Cloning into bare repository 'work/cache/sources/gh/cowang4/rusty_primes'... [INFO] running `"git" "clone" "work/cache/sources/gh/cowang4/rusty_primes" "work/ex/pr-61629/sources/master#c8865d8e195813ade6b84434ac9f8850e7112d1a/gh/cowang4/rusty_primes"` [INFO] [stderr] Cloning into 'work/ex/pr-61629/sources/master#c8865d8e195813ade6b84434ac9f8850e7112d1a/gh/cowang4/rusty_primes'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/cowang4/rusty_primes" "work/ex/pr-61629/sources/try#e212b7d492c96d3837691ba29d32d5f468933fb8/gh/cowang4/rusty_primes"` [INFO] [stderr] Cloning into 'work/ex/pr-61629/sources/try#e212b7d492c96d3837691ba29d32d5f468933fb8/gh/cowang4/rusty_primes'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 46fb5675b79a855986e1a69094d78689c1557b62 [INFO] sha for GitHub repo cowang4/rusty_primes: 46fb5675b79a855986e1a69094d78689c1557b62 [INFO] validating manifest of cowang4/rusty_primes on toolchain master#c8865d8e195813ade6b84434ac9f8850e7112d1a [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+c8865d8e195813ade6b84434ac9f8850e7112d1a-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of cowang4/rusty_primes on toolchain try#e212b7d492c96d3837691ba29d32d5f468933fb8 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+e212b7d492c96d3837691ba29d32d5f468933fb8-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing cowang4/rusty_primes [INFO] finished frobbing cowang4/rusty_primes [INFO] frobbed toml for cowang4/rusty_primes written to work/ex/pr-61629/sources/master#c8865d8e195813ade6b84434ac9f8850e7112d1a/gh/cowang4/rusty_primes/Cargo.toml [INFO] started frobbing cowang4/rusty_primes [INFO] finished frobbing cowang4/rusty_primes [INFO] frobbed toml for cowang4/rusty_primes written to work/ex/pr-61629/sources/try#e212b7d492c96d3837691ba29d32d5f468933fb8/gh/cowang4/rusty_primes/Cargo.toml [INFO] crate cowang4/rusty_primes already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+c8865d8e195813ade6b84434ac9f8850e7112d1a-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+e212b7d492c96d3837691ba29d32d5f468933fb8-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache lock [INFO] testing cowang4/rusty_primes against try#e212b7d492c96d3837691ba29d32d5f468933fb8 for pr-61629 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-61629/worker-0/try#e212b7d492c96d3837691ba29d32d5f468933fb8:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/pr-61629/sources/try#e212b7d492c96d3837691ba29d32d5f468933fb8/gh/cowang4/rusty_primes:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+e212b7d492c96d3837691ba29d32d5f468933fb8-alt" "build" "--frozen"` [INFO] [stdout] 746a855b60c0e4f7e7aba757863120e372e583d973fffd5a5d56f3e00dd0aa05 [INFO] running `"docker" "start" "-a" "746a855b60c0e4f7e7aba757863120e372e583d973fffd5a5d56f3e00dd0aa05"` [INFO] [stderr] Compiling rusty_primes v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused return value of `std::iter::Iterator::collect` that must be used [INFO] [stderr] --> src/main.rs:14:9 [INFO] [stderr] | [INFO] [stderr] 14 | / ((i*i)..n) [INFO] [stderr] 15 | | .step_by(i) [INFO] [stderr] 16 | | .map(|i| primes[i] = false) [INFO] [stderr] 17 | | .collect::<()>(); [INFO] [stderr] | |_____________________________^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_must_use)] on by default [INFO] [stderr] = note: if you really need to exhaust the iterator, consider `.for_each(drop)` instead [INFO] [stderr] [INFO] [stderr] warning: unused return value of `std::iter::Iterator::collect` that must be used [INFO] [stderr] --> src/main.rs:30:5 [INFO] [stderr] | [INFO] [stderr] 30 | / primes [INFO] [stderr] 31 | | .iter() [INFO] [stderr] 32 | | .map(|i| println!("{}", i)) [INFO] [stderr] 33 | | .collect::<()>(); [INFO] [stderr] | |_________________________^ [INFO] [stderr] | [INFO] [stderr] = note: if you really need to exhaust the iterator, consider `.for_each(drop)` instead [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.77s [INFO] running `"docker" "inspect" "746a855b60c0e4f7e7aba757863120e372e583d973fffd5a5d56f3e00dd0aa05"` [INFO] running `"docker" "rm" "-f" "746a855b60c0e4f7e7aba757863120e372e583d973fffd5a5d56f3e00dd0aa05"` [INFO] [stdout] 746a855b60c0e4f7e7aba757863120e372e583d973fffd5a5d56f3e00dd0aa05 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-61629/worker-0/try#e212b7d492c96d3837691ba29d32d5f468933fb8:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/pr-61629/sources/try#e212b7d492c96d3837691ba29d32d5f468933fb8/gh/cowang4/rusty_primes:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+e212b7d492c96d3837691ba29d32d5f468933fb8-alt" "test" "--frozen" "--no-run"` [INFO] [stdout] e4189cd50012c9bd9ce34575a03206f478e03bb4c3758d3674d2313445cc39a9 [INFO] running `"docker" "start" "-a" "e4189cd50012c9bd9ce34575a03206f478e03bb4c3758d3674d2313445cc39a9"` [INFO] [stderr] Compiling rusty_primes v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused return value of `std::iter::Iterator::collect` that must be used [INFO] [stderr] --> src/main.rs:14:9 [INFO] [stderr] | [INFO] [stderr] 14 | / ((i*i)..n) [INFO] [stderr] 15 | | .step_by(i) [INFO] [stderr] 16 | | .map(|i| primes[i] = false) [INFO] [stderr] 17 | | .collect::<()>(); [INFO] [stderr] | |_____________________________^ [INFO] [stderr] | [INFO] [stderr] = note: #[warn(unused_must_use)] on by default [INFO] [stderr] = note: if you really need to exhaust the iterator, consider `.for_each(drop)` instead [INFO] [stderr] [INFO] [stderr] warning: unused return value of `std::iter::Iterator::collect` that must be used [INFO] [stderr] --> src/main.rs:30:5 [INFO] [stderr] | [INFO] [stderr] 30 | / primes [INFO] [stderr] 31 | | .iter() [INFO] [stderr] 32 | | .map(|i| println!("{}", i)) [INFO] [stderr] 33 | | .collect::<()>(); [INFO] [stderr] | |_________________________^ [INFO] [stderr] | [INFO] [stderr] = note: if you really need to exhaust the iterator, consider `.for_each(drop)` instead [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.53s [INFO] running `"docker" "inspect" "e4189cd50012c9bd9ce34575a03206f478e03bb4c3758d3674d2313445cc39a9"` [INFO] running `"docker" "rm" "-f" "e4189cd50012c9bd9ce34575a03206f478e03bb4c3758d3674d2313445cc39a9"` [INFO] [stdout] e4189cd50012c9bd9ce34575a03206f478e03bb4c3758d3674d2313445cc39a9 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/pr-61629/worker-0/try#e212b7d492c96d3837691ba29d32d5f468933fb8:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/pr-61629/sources/try#e212b7d492c96d3837691ba29d32d5f468933fb8/gh/cowang4/rusty_primes:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+e212b7d492c96d3837691ba29d32d5f468933fb8-alt" "test" "--frozen"` [INFO] [stdout] e9f2c3a96596bee4db09ff46b9a5b0deeb37a12d97e9c8ff43d016fd36a7413a [INFO] running `"docker" "start" "-a" "e9f2c3a96596bee4db09ff46b9a5b0deeb37a12d97e9c8ff43d016fd36a7413a"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stderr] Running /opt/crater/target/debug/deps/rusty_primes-6547742642785545 [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] running `"docker" "inspect" "e9f2c3a96596bee4db09ff46b9a5b0deeb37a12d97e9c8ff43d016fd36a7413a"` [INFO] running `"docker" "rm" "-f" "e9f2c3a96596bee4db09ff46b9a5b0deeb37a12d97e9c8ff43d016fd36a7413a"` [INFO] [stdout] e9f2c3a96596bee4db09ff46b9a5b0deeb37a12d97e9c8ff43d016fd36a7413a