Oct 21 21:20:06.438 INFO checking ItsMeijers/dirmando against master#155510e377ae2a8d8ee0dad1a5f809c9062a5526 for pr-55192 Oct 21 21:20:06.438 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192/worker-0/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-0/pr-55192/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/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 +155510e377ae2a8d8ee0dad1a5f809c9062a5526-alt check --frozen --all --all-targets" "-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 21 21:20:06.854 INFO blam! 2f954b62b5eb38abc47d4dcfe8c76329263bcfbe65d8ae7130c53055be786fe1 Oct 21 21:20:06.856 INFO running `"docker" "start" "-a" "2f954b62b5eb38abc47d4dcfe8c76329263bcfbe65d8ae7130c53055be786fe1"` Oct 21 21:20:08.140 INFO kablam! usermod: no changes Oct 21 21:20:08.256 INFO kablam! Checking dirmando v0.1.0 (/source) Oct 21 21:20:09.696 INFO kablam! warning: unused import: `std::collections::HashMap` Oct 21 21:20:09.696 INFO kablam! --> src/main.rs:10:5 Oct 21 21:20:09.696 INFO kablam! | Oct 21 21:20:09.696 INFO kablam! 10 | use std::collections::HashMap; Oct 21 21:20:09.696 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 21:20:09.696 INFO kablam! | Oct 21 21:20:09.696 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 21 21:20:09.696 INFO kablam! Oct 21 21:20:09.696 INFO kablam! warning: unused import: `std::env` Oct 21 21:20:09.696 INFO kablam! --> src/dirmando.rs:2:5 Oct 21 21:20:09.696 INFO kablam! | Oct 21 21:20:09.696 INFO kablam! 2 | use std::env; Oct 21 21:20:09.696 INFO kablam! | ^^^^^^^^ Oct 21 21:20:09.696 INFO kablam! Oct 21 21:20:09.804 INFO kablam! warning: unused import: `std::collections::HashMap` Oct 21 21:20:09.804 INFO kablam! --> src/main.rs:10:5 Oct 21 21:20:09.804 INFO kablam! | Oct 21 21:20:09.804 INFO kablam! 10 | use std::collections::HashMap; Oct 21 21:20:09.804 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 21:20:09.804 INFO kablam! | Oct 21 21:20:09.804 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 21 21:20:09.804 INFO kablam! Oct 21 21:20:09.804 INFO kablam! warning: unused import: `std::env` Oct 21 21:20:09.804 INFO kablam! --> src/dirmando.rs:2:5 Oct 21 21:20:09.804 INFO kablam! | Oct 21 21:20:09.804 INFO kablam! 2 | use std::env; Oct 21 21:20:09.804 INFO kablam! | ^^^^^^^^ Oct 21 21:20:09.804 INFO kablam! Oct 21 21:20:09.892 INFO kablam! warning: unused variable: `currentDirectory` Oct 21 21:20:09.892 INFO kablam! --> src/dirmando.rs:24:24 Oct 21 21:20:09.892 INFO kablam! | Oct 21 21:20:09.892 INFO kablam! 24 | pub fn save(&self, currentDirectory: &String, command: &String) { Oct 21 21:20:09.892 INFO kablam! | ^^^^^^^^^^^^^^^^ help: consider using `_currentDirectory` instead Oct 21 21:20:09.892 INFO kablam! | Oct 21 21:20:09.892 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 21:20:09.892 INFO kablam! Oct 21 21:20:09.892 INFO kablam! warning: unused variable: `command` Oct 21 21:20:09.892 INFO kablam! --> src/dirmando.rs:24:51 Oct 21 21:20:09.892 INFO kablam! | Oct 21 21:20:09.892 INFO kablam! 24 | pub fn save(&self, currentDirectory: &String, command: &String) { Oct 21 21:20:09.892 INFO kablam! | ^^^^^^^ help: consider using `_command` instead Oct 21 21:20:09.892 INFO kablam! Oct 21 21:20:09.931 INFO kablam! warning: function `fromFile` should have a snake case name such as `from_file` Oct 21 21:20:09.931 INFO kablam! --> src/dirmando.rs:14:1 Oct 21 21:20:09.931 INFO kablam! | Oct 21 21:20:09.931 INFO kablam! 14 | / pub fn fromFile(filePath: &str) -> Dirmando { Oct 21 21:20:09.931 INFO kablam! 15 | | let mut f = File::open(filePath).expect("file not found"); Oct 21 21:20:09.931 INFO kablam! 16 | | let mut contents = String::new(); Oct 21 21:20:09.931 INFO kablam! 17 | | f.read_to_string(&mut contents).expect("something went wrong reading the file"); Oct 21 21:20:09.931 INFO kablam! 18 | | Oct 21 21:20:09.931 INFO kablam! 19 | | serde_json::from_str(&contents).unwrap() Oct 21 21:20:09.931 INFO kablam! 20 | | } Oct 21 21:20:09.931 INFO kablam! | |_^ Oct 21 21:20:09.931 INFO kablam! | Oct 21 21:20:09.932 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 21 21:20:09.932 INFO kablam! Oct 21 21:20:09.933 INFO kablam! warning: variable `filePath` should have a snake case name such as `file_path` Oct 21 21:20:09.933 INFO kablam! --> src/dirmando.rs:14:17 Oct 21 21:20:09.933 INFO kablam! | Oct 21 21:20:09.933 INFO kablam! 14 | pub fn fromFile(filePath: &str) -> Dirmando { Oct 21 21:20:09.933 INFO kablam! | ^^^^^^^^ Oct 21 21:20:09.933 INFO kablam! Oct 21 21:20:09.933 INFO kablam! warning: variable `currentDirectory` should have a snake case name such as `current_directory` Oct 21 21:20:09.933 INFO kablam! --> src/dirmando.rs:24:24 Oct 21 21:20:09.933 INFO kablam! | Oct 21 21:20:09.933 INFO kablam! 24 | pub fn save(&self, currentDirectory: &String, command: &String) { Oct 21 21:20:09.933 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 21 21:20:09.933 INFO kablam! Oct 21 21:20:09.933 INFO kablam! warning: variable `currentDirectory` should have a snake case name such as `current_directory` Oct 21 21:20:09.933 INFO kablam! --> src/dirmando.rs:28:24 Oct 21 21:20:09.933 INFO kablam! | Oct 21 21:20:09.933 INFO kablam! 28 | pub fn load(&self, currentDirectory: &String) -> Option<&Vec> { Oct 21 21:20:09.933 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 21 21:20:09.933 INFO kablam! Oct 21 21:20:09.933 INFO kablam! warning: variable `currentDir` should have a snake case name such as `current_dir` Oct 21 21:20:09.933 INFO kablam! --> src/main.rs:56:13 Oct 21 21:20:09.933 INFO kablam! | Oct 21 21:20:09.933 INFO kablam! 56 | let currentDir = String::from(current_dir().unwrap().to_str().unwrap()); Oct 21 21:20:09.933 INFO kablam! | ^^^^^^^^^^ Oct 21 21:20:09.933 INFO kablam! Oct 21 21:20:09.933 INFO kablam! warning: variable `commandosOpt` should have a snake case name such as `commandos_opt` Oct 21 21:20:09.933 INFO kablam! --> src/main.rs:58:13 Oct 21 21:20:09.933 INFO kablam! | Oct 21 21:20:09.933 INFO kablam! 58 | let commandosOpt = dm.load(¤tDir); Oct 21 21:20:09.933 INFO kablam! | ^^^^^^^^^^^^ Oct 21 21:20:09.933 INFO kablam! Oct 21 21:20:09.976 INFO kablam! warning: unused variable: `currentDirectory` Oct 21 21:20:09.976 INFO kablam! --> src/dirmando.rs:24:24 Oct 21 21:20:09.976 INFO kablam! | Oct 21 21:20:09.976 INFO kablam! 24 | pub fn save(&self, currentDirectory: &String, command: &String) { Oct 21 21:20:09.976 INFO kablam! | ^^^^^^^^^^^^^^^^ help: consider using `_currentDirectory` instead Oct 21 21:20:09.976 INFO kablam! | Oct 21 21:20:09.976 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 21 21:20:09.976 INFO kablam! Oct 21 21:20:09.976 INFO kablam! warning: unused variable: `command` Oct 21 21:20:09.976 INFO kablam! --> src/dirmando.rs:24:51 Oct 21 21:20:09.976 INFO kablam! | Oct 21 21:20:09.976 INFO kablam! 24 | pub fn save(&self, currentDirectory: &String, command: &String) { Oct 21 21:20:09.976 INFO kablam! | ^^^^^^^ help: consider using `_command` instead Oct 21 21:20:09.976 INFO kablam! Oct 21 21:20:10.036 INFO kablam! warning: function `fromFile` should have a snake case name such as `from_file` Oct 21 21:20:10.036 INFO kablam! --> src/dirmando.rs:14:1 Oct 21 21:20:10.036 INFO kablam! | Oct 21 21:20:10.036 INFO kablam! 14 | / pub fn fromFile(filePath: &str) -> Dirmando { Oct 21 21:20:10.036 INFO kablam! 15 | | let mut f = File::open(filePath).expect("file not found"); Oct 21 21:20:10.036 INFO kablam! 16 | | let mut contents = String::new(); Oct 21 21:20:10.036 INFO kablam! 17 | | f.read_to_string(&mut contents).expect("something went wrong reading the file"); Oct 21 21:20:10.036 INFO kablam! 18 | | Oct 21 21:20:10.036 INFO kablam! 19 | | serde_json::from_str(&contents).unwrap() Oct 21 21:20:10.037 INFO kablam! 20 | | } Oct 21 21:20:10.037 INFO kablam! | |_^ Oct 21 21:20:10.037 INFO kablam! | Oct 21 21:20:10.037 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 21 21:20:10.037 INFO kablam! Oct 21 21:20:10.037 INFO kablam! warning: variable `filePath` should have a snake case name such as `file_path` Oct 21 21:20:10.037 INFO kablam! --> src/dirmando.rs:14:17 Oct 21 21:20:10.037 INFO kablam! | Oct 21 21:20:10.037 INFO kablam! 14 | pub fn fromFile(filePath: &str) -> Dirmando { Oct 21 21:20:10.037 INFO kablam! | ^^^^^^^^ Oct 21 21:20:10.037 INFO kablam! Oct 21 21:20:10.037 INFO kablam! warning: variable `currentDirectory` should have a snake case name such as `current_directory` Oct 21 21:20:10.037 INFO kablam! --> src/dirmando.rs:24:24 Oct 21 21:20:10.037 INFO kablam! | Oct 21 21:20:10.037 INFO kablam! 24 | pub fn save(&self, currentDirectory: &String, command: &String) { Oct 21 21:20:10.037 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 21 21:20:10.037 INFO kablam! Oct 21 21:20:10.037 INFO kablam! warning: variable `currentDirectory` should have a snake case name such as `current_directory` Oct 21 21:20:10.037 INFO kablam! --> src/dirmando.rs:28:24 Oct 21 21:20:10.037 INFO kablam! | Oct 21 21:20:10.037 INFO kablam! 28 | pub fn load(&self, currentDirectory: &String) -> Option<&Vec> { Oct 21 21:20:10.037 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 21 21:20:10.037 INFO kablam! Oct 21 21:20:10.037 INFO kablam! warning: variable `currentDir` should have a snake case name such as `current_dir` Oct 21 21:20:10.037 INFO kablam! --> src/main.rs:56:13 Oct 21 21:20:10.037 INFO kablam! | Oct 21 21:20:10.037 INFO kablam! 56 | let currentDir = String::from(current_dir().unwrap().to_str().unwrap()); Oct 21 21:20:10.037 INFO kablam! | ^^^^^^^^^^ Oct 21 21:20:10.037 INFO kablam! Oct 21 21:20:10.037 INFO kablam! warning: variable `commandosOpt` should have a snake case name such as `commandos_opt` Oct 21 21:20:10.037 INFO kablam! --> src/main.rs:58:13 Oct 21 21:20:10.037 INFO kablam! | Oct 21 21:20:10.037 INFO kablam! 58 | let commandosOpt = dm.load(¤tDir); Oct 21 21:20:10.037 INFO kablam! | ^^^^^^^^^^^^ Oct 21 21:20:10.037 INFO kablam! Oct 21 21:20:10.062 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.89s Oct 21 21:20:10.077 INFO kablam! su: No module specific data is present Oct 21 21:20:10.717 INFO running `"docker" "rm" "-f" "2f954b62b5eb38abc47d4dcfe8c76329263bcfbe65d8ae7130c53055be786fe1"` Oct 21 21:20:11.044 INFO blam! 2f954b62b5eb38abc47d4dcfe8c76329263bcfbe65d8ae7130c53055be786fe1