[INFO] fetching crate libretro-sys 0.1.1... [INFO] testing libretro-sys-0.1.1 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate libretro-sys 0.1.1 into /workspace/builds/worker-27/source [INFO] validating manifest of crates.io crate libretro-sys 0.1.1 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate libretro-sys 0.1.1 [INFO] finished tweaking crates.io crate libretro-sys 0.1.1 [INFO] tweaked toml for crates.io crate libretro-sys 0.1.1 written to /workspace/builds/worker-27/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 3524a80f3fd39e836371925ab13bf89dd9633bd6f4c178c942e9096ea3b8891e [INFO] running `Command { std: "docker" "start" "-a" "3524a80f3fd39e836371925ab13bf89dd9633bd6f4c178c942e9096ea3b8891e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "3524a80f3fd39e836371925ab13bf89dd9633bd6f4c178c942e9096ea3b8891e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "3524a80f3fd39e836371925ab13bf89dd9633bd6f4c178c942e9096ea3b8891e", kill_on_drop: false }` [INFO] [stdout] 3524a80f3fd39e836371925ab13bf89dd9633bd6f4c178c942e9096ea3b8891e [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 295f1ef5625a18f9bf99003fe52cc2f9ebc4009f25652bd89bdc8cb0a49d4108 [INFO] running `Command { std: "docker" "start" "-a" "295f1ef5625a18f9bf99003fe52cc2f9ebc4009f25652bd89bdc8cb0a49d4108", kill_on_drop: false }` [INFO] [stderr] Compiling libretro-sys v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:79:39 [INFO] [stdout] | [INFO] [stdout] 79 | pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 79 - pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stdout] 79 + pub const DEVICE_MASK: libc::c_uint = (1 << DEVICE_TYPE_SHIFT) - 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:676:60 [INFO] [stdout] | [INFO] [stdout] 676 | pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 676 - pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 676 + pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = 25 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:702:60 [INFO] [stdout] | [INFO] [stdout] 702 | pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 702 - pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 702 + pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = 26 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:847:55 [INFO] [stdout] | [INFO] [stdout] 847 | pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 847 - pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 847 + pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = 36 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:910:72 [INFO] [stdout] | [INFO] [stdout] 910 | pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 910 - pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 910 + pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = 40 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:939:63 [INFO] [stdout] | [INFO] [stdout] 939 | pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 939 - pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 939 + pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = 41 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:941:41 [INFO] [stdout] | [INFO] [stdout] 941 | pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 941 - pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] 941 + pub const MEMDESC_CONST: libc::c_uint = 1 << 0; // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:942:45 [INFO] [stdout] | [INFO] [stdout] 942 | pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 942 - pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stdout] 942 + pub const MEMDESC_BIGENDIAN: libc::c_uint = 1 << 1; // The memory area contains big endian data. Default is little endian. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:943:43 [INFO] [stdout] | [INFO] [stdout] 943 | pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is s... [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 943 - pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stdout] 943 + pub const MEMDESC_ALIGN_2: libc::c_uint = 1 << 16; // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:944:43 [INFO] [stdout] | [INFO] [stdout] 944 | pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 944 - pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stdout] 944 + pub const MEMDESC_ALIGN_4: libc::c_uint = 2 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:945:43 [INFO] [stdout] | [INFO] [stdout] 945 | pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 945 - pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stdout] 945 + pub const MEMDESC_ALIGN_8: libc::c_uint = 3 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:946:45 [INFO] [stdout] | [INFO] [stdout] 946 | pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 946 - pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] 946 + pub const MEMDESC_MINSIZE_2: libc::c_uint = 1 << 24; // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:947:45 [INFO] [stdout] | [INFO] [stdout] 947 | pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 947 - pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stdout] 947 + pub const MEMDESC_MINSIZE_4: libc::c_uint = 2 << 24; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:948:45 [INFO] [stdout] | [INFO] [stdout] 948 | pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 948 - pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stdout] 948 + pub const MEMDESC_MINSIZE_8: libc::c_uint = 3 << 24; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1207:36 [INFO] [stdout] | [INFO] [stdout] 1207 | pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1207 - pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stdout] 1207 + pub const SIMD_SSE: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1208:37 [INFO] [stdout] | [INFO] [stdout] 1208 | pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1208 - pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stdout] 1208 + pub const SIMD_SSE2: libc::c_uint = 1 << 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1209:36 [INFO] [stdout] | [INFO] [stdout] 1209 | pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1209 - pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stdout] 1209 + pub const SIMD_VMX: libc::c_uint = 1 << 2; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1210:39 [INFO] [stdout] | [INFO] [stdout] 1210 | pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1210 - pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stdout] 1210 + pub const SIMD_VMX128: libc::c_uint = 1 << 3; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1211:36 [INFO] [stdout] | [INFO] [stdout] 1211 | pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1211 - pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stdout] 1211 + pub const SIMD_AVX: libc::c_uint = 1 << 4; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1212:37 [INFO] [stdout] | [INFO] [stdout] 1212 | pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1212 - pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stdout] 1212 + pub const SIMD_NEON: libc::c_uint = 1 << 5; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1213:37 [INFO] [stdout] | [INFO] [stdout] 1213 | pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1213 - pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stdout] 1213 + pub const SIMD_SSE3: libc::c_uint = 1 << 6; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1214:38 [INFO] [stdout] | [INFO] [stdout] 1214 | pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1214 - pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stdout] 1214 + pub const SIMD_SSSE3: libc::c_uint = 1 << 7; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1215:36 [INFO] [stdout] | [INFO] [stdout] 1215 | pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1215 - pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stdout] 1215 + pub const SIMD_MMX: libc::c_uint = 1 << 8; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1216:39 [INFO] [stdout] | [INFO] [stdout] 1216 | pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1216 - pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stdout] 1216 + pub const SIMD_MMXEXT: libc::c_uint = 1 << 9; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1217:37 [INFO] [stdout] | [INFO] [stdout] 1217 | pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1217 - pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stdout] 1217 + pub const SIMD_SSE4: libc::c_uint = 1 << 10; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1218:38 [INFO] [stdout] | [INFO] [stdout] 1218 | pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1218 - pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stdout] 1218 + pub const SIMD_SSE42: libc::c_uint = 1 << 11; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1219:37 [INFO] [stdout] | [INFO] [stdout] 1219 | pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1219 - pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stdout] 1219 + pub const SIMD_AVX2: libc::c_uint = 1 << 12; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1220:37 [INFO] [stdout] | [INFO] [stdout] 1220 | pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1220 - pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stdout] 1220 + pub const SIMD_VFPU: libc::c_uint = 1 << 13; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1221:35 [INFO] [stdout] | [INFO] [stdout] 1221 | pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1221 - pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stdout] 1221 + pub const SIMD_PS: libc::c_uint = 1 << 14; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1222:36 [INFO] [stdout] | [INFO] [stdout] 1222 | pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1222 - pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stdout] 1222 + pub const SIMD_AES: libc::c_uint = 1 << 15; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1223:38 [INFO] [stdout] | [INFO] [stdout] 1223 | pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1223 - pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stdout] 1223 + pub const SIMD_VFPV3: libc::c_uint = 1 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1224:38 [INFO] [stdout] | [INFO] [stdout] 1224 | pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1224 - pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stdout] 1224 + pub const SIMD_VFPV4: libc::c_uint = 1 << 17; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1225:39 [INFO] [stdout] | [INFO] [stdout] 1225 | pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1225 - pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stdout] 1225 + pub const SIMD_POPCNT: libc::c_uint = 1 << 18; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1226:38 [INFO] [stdout] | [INFO] [stdout] 1226 | pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1226 - pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stdout] 1226 + pub const SIMD_MOVBE: libc::c_uint = 1 << 19; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1906:47 [INFO] [stdout] | [INFO] [stdout] 1906 | pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1906 - pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stdout] 1906 + pub const MEMORY_ACCESS_WRITE: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1909:46 [INFO] [stdout] | [INFO] [stdout] 1909 | pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1909 - pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stdout] 1909 + pub const MEMORY_ACCESS_READ: libc::c_uint = 1 << 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1913:46 [INFO] [stdout] | [INFO] [stdout] 1913 | pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1913 - pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stdout] 1913 + pub const MEMORY_TYPE_CACHED: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 37 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.94s [INFO] running `Command { std: "docker" "inspect" "295f1ef5625a18f9bf99003fe52cc2f9ebc4009f25652bd89bdc8cb0a49d4108", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "295f1ef5625a18f9bf99003fe52cc2f9ebc4009f25652bd89bdc8cb0a49d4108", kill_on_drop: false }` [INFO] [stdout] 295f1ef5625a18f9bf99003fe52cc2f9ebc4009f25652bd89bdc8cb0a49d4108 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 6e7d9d6bffc814cd9d824af8464aa2ed72a69de7962689104c38c31a52e3e64a [INFO] running `Command { std: "docker" "start" "-a" "6e7d9d6bffc814cd9d824af8464aa2ed72a69de7962689104c38c31a52e3e64a", kill_on_drop: false }` [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:79:39 [INFO] [stdout] | [INFO] [stdout] 79 | pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 79 - pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stdout] 79 + pub const DEVICE_MASK: libc::c_uint = (1 << DEVICE_TYPE_SHIFT) - 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:676:60 [INFO] [stdout] | [INFO] [stdout] 676 | pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 676 - pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 676 + pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = 25 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:702:60 [INFO] [stdout] | [INFO] [stdout] 702 | pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 702 - pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 702 + pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = 26 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:847:55 [INFO] [stdout] | [INFO] [stdout] 847 | pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 847 - pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 847 + pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = 36 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:910:72 [INFO] [stdout] | [INFO] [stdout] 910 | pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 910 - pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 910 + pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = 40 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:939:63 [INFO] [stdout] | [INFO] [stdout] 939 | pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 939 - pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 939 + pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = 41 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:941:41 [INFO] [stdout] | [INFO] [stdout] 941 | pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 941 - pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] 941 + pub const MEMDESC_CONST: libc::c_uint = 1 << 0; // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:942:45 [INFO] [stdout] | [INFO] [stdout] 942 | pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 942 - pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stdout] 942 + pub const MEMDESC_BIGENDIAN: libc::c_uint = 1 << 1; // The memory area contains big endian data. Default is little endian. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:943:43 [INFO] [stdout] | [INFO] [stdout] 943 | pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is s... [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 943 - pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stdout] 943 + pub const MEMDESC_ALIGN_2: libc::c_uint = 1 << 16; // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:944:43 [INFO] [stdout] | [INFO] [stdout] 944 | pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 944 - pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stdout] 944 + pub const MEMDESC_ALIGN_4: libc::c_uint = 2 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:945:43 [INFO] [stdout] | [INFO] [stdout] 945 | pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 945 - pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stdout] 945 + pub const MEMDESC_ALIGN_8: libc::c_uint = 3 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:946:45 [INFO] [stdout] | [INFO] [stdout] 946 | pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 946 - pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] 946 + pub const MEMDESC_MINSIZE_2: libc::c_uint = 1 << 24; // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:947:45 [INFO] [stdout] | [INFO] [stdout] 947 | pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 947 - pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stdout] 947 + pub const MEMDESC_MINSIZE_4: libc::c_uint = 2 << 24; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:948:45 [INFO] [stdout] | [INFO] [stdout] 948 | pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 948 - pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stdout] 948 + pub const MEMDESC_MINSIZE_8: libc::c_uint = 3 << 24; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1207:36 [INFO] [stdout] | [INFO] [stdout] 1207 | pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1207 - pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stdout] 1207 + pub const SIMD_SSE: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1208:37 [INFO] [stdout] | [INFO] [stdout] 1208 | pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1208 - pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stdout] 1208 + pub const SIMD_SSE2: libc::c_uint = 1 << 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1209:36 [INFO] [stdout] | [INFO] [stdout] 1209 | pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1209 - pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stdout] 1209 + pub const SIMD_VMX: libc::c_uint = 1 << 2; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1210:39 [INFO] [stdout] | [INFO] [stdout] 1210 | pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1210 - pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stdout] 1210 + pub const SIMD_VMX128: libc::c_uint = 1 << 3; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1211:36 [INFO] [stdout] | [INFO] [stdout] 1211 | pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1211 - pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stdout] 1211 + pub const SIMD_AVX: libc::c_uint = 1 << 4; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1212:37 [INFO] [stdout] | [INFO] [stdout] 1212 | pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1212 - pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stdout] 1212 + pub const SIMD_NEON: libc::c_uint = 1 << 5; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1213:37 [INFO] [stdout] | [INFO] [stdout] 1213 | pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1213 - pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stdout] 1213 + pub const SIMD_SSE3: libc::c_uint = 1 << 6; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1214:38 [INFO] [stdout] | [INFO] [stdout] 1214 | pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1214 - pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stdout] 1214 + pub const SIMD_SSSE3: libc::c_uint = 1 << 7; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1215:36 [INFO] [stdout] | [INFO] [stdout] 1215 | pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1215 - pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stdout] 1215 + pub const SIMD_MMX: libc::c_uint = 1 << 8; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1216:39 [INFO] [stdout] | [INFO] [stdout] 1216 | pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1216 - pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stdout] 1216 + pub const SIMD_MMXEXT: libc::c_uint = 1 << 9; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1217:37 [INFO] [stdout] | [INFO] [stdout] 1217 | pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1217 - pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stdout] 1217 + pub const SIMD_SSE4: libc::c_uint = 1 << 10; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1218:38 [INFO] [stdout] | [INFO] [stdout] 1218 | pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1218 - pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stdout] 1218 + pub const SIMD_SSE42: libc::c_uint = 1 << 11; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1219:37 [INFO] [stdout] | [INFO] [stdout] 1219 | pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1219 - pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stdout] 1219 + pub const SIMD_AVX2: libc::c_uint = 1 << 12; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1220:37 [INFO] [stdout] | [INFO] [stdout] 1220 | pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1220 - pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stdout] 1220 + pub const SIMD_VFPU: libc::c_uint = 1 << 13; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling libretro-sys v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1221:35 [INFO] [stdout] | [INFO] [stdout] 1221 | pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1221 - pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stdout] 1221 + pub const SIMD_PS: libc::c_uint = 1 << 14; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1222:36 [INFO] [stdout] | [INFO] [stdout] 1222 | pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1222 - pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stdout] 1222 + pub const SIMD_AES: libc::c_uint = 1 << 15; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1223:38 [INFO] [stdout] | [INFO] [stdout] 1223 | pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1223 - pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stdout] 1223 + pub const SIMD_VFPV3: libc::c_uint = 1 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1224:38 [INFO] [stdout] | [INFO] [stdout] 1224 | pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1224 - pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stdout] 1224 + pub const SIMD_VFPV4: libc::c_uint = 1 << 17; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1225:39 [INFO] [stdout] | [INFO] [stdout] 1225 | pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1225 - pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stdout] 1225 + pub const SIMD_POPCNT: libc::c_uint = 1 << 18; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1226:38 [INFO] [stdout] | [INFO] [stdout] 1226 | pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1226 - pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stdout] 1226 + pub const SIMD_MOVBE: libc::c_uint = 1 << 19; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1906:47 [INFO] [stdout] | [INFO] [stdout] 1906 | pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1906 - pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stdout] 1906 + pub const MEMORY_ACCESS_WRITE: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1909:46 [INFO] [stdout] | [INFO] [stdout] 1909 | pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1909 - pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stdout] 1909 + pub const MEMORY_ACCESS_READ: libc::c_uint = 1 << 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1913:46 [INFO] [stdout] | [INFO] [stdout] 1913 | pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1913 - pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stdout] 1913 + pub const MEMORY_TYPE_CACHED: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 37 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:79:39 [INFO] [stdout] | [INFO] [stdout] 79 | pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 79 - pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stdout] 79 + pub const DEVICE_MASK: libc::c_uint = (1 << DEVICE_TYPE_SHIFT) - 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:676:60 [INFO] [stdout] | [INFO] [stdout] 676 | pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 676 - pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 676 + pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = 25 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:702:60 [INFO] [stdout] | [INFO] [stdout] 702 | pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 702 - pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 702 + pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = 26 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:847:55 [INFO] [stdout] | [INFO] [stdout] 847 | pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 847 - pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 847 + pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = 36 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:910:72 [INFO] [stdout] | [INFO] [stdout] 910 | pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 910 - pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 910 + pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = 40 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:939:63 [INFO] [stdout] | [INFO] [stdout] 939 | pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 939 - pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stdout] 939 + pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = 41 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:941:41 [INFO] [stdout] | [INFO] [stdout] 941 | pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 941 - pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] 941 + pub const MEMDESC_CONST: libc::c_uint = 1 << 0; // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:942:45 [INFO] [stdout] | [INFO] [stdout] 942 | pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 942 - pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stdout] 942 + pub const MEMDESC_BIGENDIAN: libc::c_uint = 1 << 1; // The memory area contains big endian data. Default is little endian. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:943:43 [INFO] [stdout] | [INFO] [stdout] 943 | pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is s... [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 943 - pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stdout] 943 + pub const MEMDESC_ALIGN_2: libc::c_uint = 1 << 16; // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:944:43 [INFO] [stdout] | [INFO] [stdout] 944 | pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 944 - pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stdout] 944 + pub const MEMDESC_ALIGN_4: libc::c_uint = 2 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:945:43 [INFO] [stdout] | [INFO] [stdout] 945 | pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 945 - pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stdout] 945 + pub const MEMDESC_ALIGN_8: libc::c_uint = 3 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:946:45 [INFO] [stdout] | [INFO] [stdout] 946 | pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 946 - pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] 946 + pub const MEMDESC_MINSIZE_2: libc::c_uint = 1 << 24; // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:947:45 [INFO] [stdout] | [INFO] [stdout] 947 | pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 947 - pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stdout] 947 + pub const MEMDESC_MINSIZE_4: libc::c_uint = 2 << 24; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:948:45 [INFO] [stdout] | [INFO] [stdout] 948 | pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 948 - pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stdout] 948 + pub const MEMDESC_MINSIZE_8: libc::c_uint = 3 << 24; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1207:36 [INFO] [stdout] | [INFO] [stdout] 1207 | pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1207 - pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stdout] 1207 + pub const SIMD_SSE: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1208:37 [INFO] [stdout] | [INFO] [stdout] 1208 | pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1208 - pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stdout] 1208 + pub const SIMD_SSE2: libc::c_uint = 1 << 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1209:36 [INFO] [stdout] | [INFO] [stdout] 1209 | pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1209 - pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stdout] 1209 + pub const SIMD_VMX: libc::c_uint = 1 << 2; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1210:39 [INFO] [stdout] | [INFO] [stdout] 1210 | pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1210 - pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stdout] 1210 + pub const SIMD_VMX128: libc::c_uint = 1 << 3; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1211:36 [INFO] [stdout] | [INFO] [stdout] 1211 | pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1211 - pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stdout] 1211 + pub const SIMD_AVX: libc::c_uint = 1 << 4; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1212:37 [INFO] [stdout] | [INFO] [stdout] 1212 | pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1212 - pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stdout] 1212 + pub const SIMD_NEON: libc::c_uint = 1 << 5; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1213:37 [INFO] [stdout] | [INFO] [stdout] 1213 | pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1213 - pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stdout] 1213 + pub const SIMD_SSE3: libc::c_uint = 1 << 6; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1214:38 [INFO] [stdout] | [INFO] [stdout] 1214 | pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1214 - pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stdout] 1214 + pub const SIMD_SSSE3: libc::c_uint = 1 << 7; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1215:36 [INFO] [stdout] | [INFO] [stdout] 1215 | pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1215 - pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stdout] 1215 + pub const SIMD_MMX: libc::c_uint = 1 << 8; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1216:39 [INFO] [stdout] | [INFO] [stdout] 1216 | pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1216 - pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stdout] 1216 + pub const SIMD_MMXEXT: libc::c_uint = 1 << 9; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1217:37 [INFO] [stdout] | [INFO] [stdout] 1217 | pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1217 - pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stdout] 1217 + pub const SIMD_SSE4: libc::c_uint = 1 << 10; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1218:38 [INFO] [stdout] | [INFO] [stdout] 1218 | pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1218 - pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stdout] 1218 + pub const SIMD_SSE42: libc::c_uint = 1 << 11; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1219:37 [INFO] [stdout] | [INFO] [stdout] 1219 | pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1219 - pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stdout] 1219 + pub const SIMD_AVX2: libc::c_uint = 1 << 12; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1220:37 [INFO] [stdout] | [INFO] [stdout] 1220 | pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1220 - pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stdout] 1220 + pub const SIMD_VFPU: libc::c_uint = 1 << 13; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1221:35 [INFO] [stdout] | [INFO] [stdout] 1221 | pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1221 - pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stdout] 1221 + pub const SIMD_PS: libc::c_uint = 1 << 14; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1222:36 [INFO] [stdout] | [INFO] [stdout] 1222 | pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1222 - pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stdout] 1222 + pub const SIMD_AES: libc::c_uint = 1 << 15; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1223:38 [INFO] [stdout] | [INFO] [stdout] 1223 | pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1223 - pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stdout] 1223 + pub const SIMD_VFPV3: libc::c_uint = 1 << 16; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1224:38 [INFO] [stdout] | [INFO] [stdout] 1224 | pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1224 - pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stdout] 1224 + pub const SIMD_VFPV4: libc::c_uint = 1 << 17; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1225:39 [INFO] [stdout] | [INFO] [stdout] 1225 | pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1225 - pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stdout] 1225 + pub const SIMD_POPCNT: libc::c_uint = 1 << 18; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1226:38 [INFO] [stdout] | [INFO] [stdout] 1226 | pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1226 - pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stdout] 1226 + pub const SIMD_MOVBE: libc::c_uint = 1 << 19; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1906:47 [INFO] [stdout] | [INFO] [stdout] 1906 | pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1906 - pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stdout] 1906 + pub const MEMORY_ACCESS_WRITE: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1909:46 [INFO] [stdout] | [INFO] [stdout] 1909 | pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1909 - pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stdout] 1909 + pub const MEMORY_ACCESS_READ: libc::c_uint = 1 << 1; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around assigned value [INFO] [stdout] --> src/lib.rs:1913:46 [INFO] [stdout] | [INFO] [stdout] 1913 | pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 1913 - pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stdout] 1913 + pub const MEMORY_TYPE_CACHED: libc::c_uint = 1 << 0; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 37 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.66s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/libretro_sys-f6313041a4d8a33b) [INFO] running `Command { std: "docker" "inspect" "6e7d9d6bffc814cd9d824af8464aa2ed72a69de7962689104c38c31a52e3e64a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "6e7d9d6bffc814cd9d824af8464aa2ed72a69de7962689104c38c31a52e3e64a", kill_on_drop: false }` [INFO] [stdout] 6e7d9d6bffc814cd9d824af8464aa2ed72a69de7962689104c38c31a52e3e64a [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-27/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] f958dae6144bc4a7182ab0dad689495e0d6c127c847f2c2a81378139f5203956 [INFO] running `Command { std: "docker" "start" "-a" "f958dae6144bc4a7182ab0dad689495e0d6c127c847f2c2a81378139f5203956", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:79:39 [INFO] [stderr] | [INFO] [stderr] 79 | pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 79 - pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stderr] 79 + pub const DEVICE_MASK: libc::c_uint = (1 << DEVICE_TYPE_SHIFT) - 1; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:676:60 [INFO] [stderr] | [INFO] [stderr] 676 | pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 676 - pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 676 + pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = 25 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:702:60 [INFO] [stderr] | [INFO] [stderr] 702 | pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 702 - pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 702 + pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = 26 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:847:55 [INFO] [stderr] | [INFO] [stderr] 847 | pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 847 - pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 847 + pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = 36 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:910:72 [INFO] [stderr] | [INFO] [stderr] 910 | pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 910 - pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 910 + pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = 40 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:939:63 [INFO] [stderr] | [INFO] [stderr] 939 | pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 939 - pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 939 + pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = 41 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:941:41 [INFO] [stderr] | [INFO] [stderr] 941 | pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 941 - pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stderr] 941 + pub const MEMDESC_CONST: libc::c_uint = 1 << 0; // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:942:45 [INFO] [stderr] | [INFO] [stderr] 942 | pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 942 - pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stderr] 942 + pub const MEMDESC_BIGENDIAN: libc::c_uint = 1 << 1; // The memory area contains big endian data. Default is little endian. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:943:43 [INFO] [stderr] | [INFO] [stderr] 943 | pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is s... [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 943 - pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stderr] 943 + pub const MEMDESC_ALIGN_2: libc::c_uint = 1 << 16; // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:944:43 [INFO] [stderr] | [INFO] [stderr] 944 | pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 944 - pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stderr] 944 + pub const MEMDESC_ALIGN_4: libc::c_uint = 2 << 16; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:945:43 [INFO] [stderr] | [INFO] [stderr] 945 | pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 945 - pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stderr] 945 + pub const MEMDESC_ALIGN_8: libc::c_uint = 3 << 16; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:946:45 [INFO] [stderr] | [INFO] [stderr] 946 | pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 946 - pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stderr] 946 + pub const MEMDESC_MINSIZE_2: libc::c_uint = 1 << 24; // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:947:45 [INFO] [stderr] | [INFO] [stderr] 947 | pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 947 - pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stderr] 947 + pub const MEMDESC_MINSIZE_4: libc::c_uint = 2 << 24; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:948:45 [INFO] [stderr] | [INFO] [stderr] 948 | pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 948 - pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stderr] 948 + pub const MEMDESC_MINSIZE_8: libc::c_uint = 3 << 24; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1207:36 [INFO] [stderr] | [INFO] [stderr] 1207 | pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1207 - pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stderr] 1207 + pub const SIMD_SSE: libc::c_uint = 1 << 0; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1208:37 [INFO] [stderr] | [INFO] [stderr] 1208 | pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1208 - pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stderr] 1208 + pub const SIMD_SSE2: libc::c_uint = 1 << 1; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1209:36 [INFO] [stderr] | [INFO] [stderr] 1209 | pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1209 - pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stderr] 1209 + pub const SIMD_VMX: libc::c_uint = 1 << 2; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1210:39 [INFO] [stderr] | [INFO] [stderr] 1210 | pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1210 - pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stderr] 1210 + pub const SIMD_VMX128: libc::c_uint = 1 << 3; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1211:36 [INFO] [stderr] | [INFO] [stderr] 1211 | pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1211 - pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stderr] 1211 + pub const SIMD_AVX: libc::c_uint = 1 << 4; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1212:37 [INFO] [stderr] | [INFO] [stderr] 1212 | pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1212 - pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stderr] 1212 + pub const SIMD_NEON: libc::c_uint = 1 << 5; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1213:37 [INFO] [stderr] | [INFO] [stderr] 1213 | pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1213 - pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stderr] 1213 + pub const SIMD_SSE3: libc::c_uint = 1 << 6; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1214:38 [INFO] [stderr] | [INFO] [stderr] 1214 | pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1214 - pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stderr] 1214 + pub const SIMD_SSSE3: libc::c_uint = 1 << 7; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1215:36 [INFO] [stderr] | [INFO] [stderr] 1215 | pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1215 - pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stderr] 1215 + pub const SIMD_MMX: libc::c_uint = 1 << 8; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1216:39 [INFO] [stderr] | [INFO] [stderr] 1216 | pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1216 - pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stderr] 1216 + pub const SIMD_MMXEXT: libc::c_uint = 1 << 9; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1217:37 [INFO] [stderr] | [INFO] [stderr] 1217 | pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1217 - pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stderr] 1217 + pub const SIMD_SSE4: libc::c_uint = 1 << 10; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1218:38 [INFO] [stderr] | [INFO] [stderr] 1218 | pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1218 - pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stderr] 1218 + pub const SIMD_SSE42: libc::c_uint = 1 << 11; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1219:37 [INFO] [stderr] | [INFO] [stderr] 1219 | pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1219 - pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stderr] 1219 + pub const SIMD_AVX2: libc::c_uint = 1 << 12; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1220:37 [INFO] [stderr] | [INFO] [stderr] 1220 | pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1220 - pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stderr] 1220 + pub const SIMD_VFPU: libc::c_uint = 1 << 13; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1221:35 [INFO] [stderr] | [INFO] [stderr] 1221 | pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1221 - pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stderr] 1221 + pub const SIMD_PS: libc::c_uint = 1 << 14; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1222:36 [INFO] [stderr] | [INFO] [stderr] 1222 | pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1222 - pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stderr] 1222 + pub const SIMD_AES: libc::c_uint = 1 << 15; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1223:38 [INFO] [stderr] | [INFO] [stderr] 1223 | pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1223 - pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stderr] 1223 + pub const SIMD_VFPV3: libc::c_uint = 1 << 16; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1224:38 [INFO] [stderr] | [INFO] [stderr] 1224 | pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1224 - pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stderr] 1224 + pub const SIMD_VFPV4: libc::c_uint = 1 << 17; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1225:39 [INFO] [stderr] | [INFO] [stderr] 1225 | pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1225 - pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stderr] 1225 + pub const SIMD_POPCNT: libc::c_uint = 1 << 18; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1226:38 [INFO] [stderr] | [INFO] [stderr] 1226 | pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1226 - pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stderr] 1226 + pub const SIMD_MOVBE: libc::c_uint = 1 << 19; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1906:47 [INFO] [stderr] | [INFO] [stderr] 1906 | pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1906 - pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stderr] 1906 + pub const MEMORY_ACCESS_WRITE: libc::c_uint = 1 << 0; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1909:46 [INFO] [stderr] | [INFO] [stderr] 1909 | pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1909 - pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stderr] 1909 + pub const MEMORY_ACCESS_READ: libc::c_uint = 1 << 1; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> src/lib.rs:1913:46 [INFO] [stderr] | [INFO] [stderr] 1913 | pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1913 - pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stderr] 1913 + pub const MEMORY_TYPE_CACHED: libc::c_uint = 1 << 0; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `libretro-sys` (lib) generated 37 warnings [INFO] [stderr] warning: `libretro-sys` (lib test) generated 37 warnings (37 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.04s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/libretro_sys-f6313041a4d8a33b) [INFO] [stdout] [INFO] [stderr] Doc-tests libretro-sys [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:79:39 [INFO] [stderr] | [INFO] [stderr] 79 | pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 79 - pub const DEVICE_MASK: libc::c_uint = ((1 << DEVICE_TYPE_SHIFT) - 1); [INFO] [stderr] 79 + pub const DEVICE_MASK: libc::c_uint = (1 << DEVICE_TYPE_SHIFT) - 1; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:676:60 [INFO] [stderr] | [INFO] [stderr] 676 | pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 676 - pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = (25 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 676 + pub const ENVIRONMENT_GET_SENSOR_INTERFACE: libc::c_uint = 25 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:702:60 [INFO] [stderr] | [INFO] [stderr] 702 | pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 702 - pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = (26 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 702 + pub const ENVIRONMENT_GET_CAMERA_INTERFACE: libc::c_uint = 26 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:847:55 [INFO] [stderr] | [INFO] [stderr] 847 | pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 847 - pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = (36 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 847 + pub const ENVIRONMENT_SET_MEMORY_MAPS: libc::c_uint = 36 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:910:72 [INFO] [stderr] | [INFO] [stderr] 910 | pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 910 - pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = (40 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 910 + pub const ENVIRONMENT_GET_CURRENT_SOFTWARE_FRAMEBUFFER: libc::c_uint = 40 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:939:63 [INFO] [stderr] | [INFO] [stderr] 939 | pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 939 - pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = (41 | ENVIRONMENT_EXPERIMENTAL); [INFO] [stderr] 939 + pub const ENVIRONMENT_GET_HW_RENDER_INTERFACE: libc::c_uint = 41 | ENVIRONMENT_EXPERIMENTAL; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:941:41 [INFO] [stderr] | [INFO] [stderr] 941 | pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 941 - pub const MEMDESC_CONST: libc::c_uint = (1 << 0); // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stderr] 941 + pub const MEMDESC_CONST: libc::c_uint = 1 << 0; // The frontend will never change this memory area once retro_load_game has returned. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:942:45 [INFO] [stderr] | [INFO] [stderr] 942 | pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 942 - pub const MEMDESC_BIGENDIAN: libc::c_uint = (1 << 1); // The memory area contains big endian data. Default is little endian. [INFO] [stderr] 942 + pub const MEMDESC_BIGENDIAN: libc::c_uint = 1 << 1; // The memory area contains big endian data. Default is little endian. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:943:43 [INFO] [stderr] | [INFO] [stderr] 943 | pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is s... [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 943 - pub const MEMDESC_ALIGN_2: libc::c_uint = (1 << 16); // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stderr] 943 + pub const MEMDESC_ALIGN_2: libc::c_uint = 1 << 16; // All memory access in this area is aligned to their own size, or 2, whichever is smaller. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:944:43 [INFO] [stderr] | [INFO] [stderr] 944 | pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 944 - pub const MEMDESC_ALIGN_4: libc::c_uint = (2 << 16); [INFO] [stderr] 944 + pub const MEMDESC_ALIGN_4: libc::c_uint = 2 << 16; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:945:43 [INFO] [stderr] | [INFO] [stderr] 945 | pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 945 - pub const MEMDESC_ALIGN_8: libc::c_uint = (3 << 16); [INFO] [stderr] 945 + pub const MEMDESC_ALIGN_8: libc::c_uint = 3 << 16; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:946:45 [INFO] [stderr] | [INFO] [stderr] 946 | pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 946 - pub const MEMDESC_MINSIZE_2: libc::c_uint = (1 << 24); // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stderr] 946 + pub const MEMDESC_MINSIZE_2: libc::c_uint = 1 << 24; // All memory in this region is accessed at least 2 bytes at the time. [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:947:45 [INFO] [stderr] | [INFO] [stderr] 947 | pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 947 - pub const MEMDESC_MINSIZE_4: libc::c_uint = (2 << 24); [INFO] [stderr] 947 + pub const MEMDESC_MINSIZE_4: libc::c_uint = 2 << 24; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:948:45 [INFO] [stderr] | [INFO] [stderr] 948 | pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 948 - pub const MEMDESC_MINSIZE_8: libc::c_uint = (3 << 24); [INFO] [stderr] 948 + pub const MEMDESC_MINSIZE_8: libc::c_uint = 3 << 24; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1207:36 [INFO] [stderr] | [INFO] [stderr] 1207 | pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1207 - pub const SIMD_SSE: libc::c_uint = (1 << 0); [INFO] [stderr] 1207 + pub const SIMD_SSE: libc::c_uint = 1 << 0; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1208:37 [INFO] [stderr] | [INFO] [stderr] 1208 | pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1208 - pub const SIMD_SSE2: libc::c_uint = (1 << 1); [INFO] [stderr] 1208 + pub const SIMD_SSE2: libc::c_uint = 1 << 1; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1209:36 [INFO] [stderr] | [INFO] [stderr] 1209 | pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1209 - pub const SIMD_VMX: libc::c_uint = (1 << 2); [INFO] [stderr] 1209 + pub const SIMD_VMX: libc::c_uint = 1 << 2; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1210:39 [INFO] [stderr] | [INFO] [stderr] 1210 | pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1210 - pub const SIMD_VMX128: libc::c_uint = (1 << 3); [INFO] [stderr] 1210 + pub const SIMD_VMX128: libc::c_uint = 1 << 3; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1211:36 [INFO] [stderr] | [INFO] [stderr] 1211 | pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1211 - pub const SIMD_AVX: libc::c_uint = (1 << 4); [INFO] [stderr] 1211 + pub const SIMD_AVX: libc::c_uint = 1 << 4; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1212:37 [INFO] [stderr] | [INFO] [stderr] 1212 | pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1212 - pub const SIMD_NEON: libc::c_uint = (1 << 5); [INFO] [stderr] 1212 + pub const SIMD_NEON: libc::c_uint = 1 << 5; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1213:37 [INFO] [stderr] | [INFO] [stderr] 1213 | pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1213 - pub const SIMD_SSE3: libc::c_uint = (1 << 6); [INFO] [stderr] 1213 + pub const SIMD_SSE3: libc::c_uint = 1 << 6; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1214:38 [INFO] [stderr] | [INFO] [stderr] 1214 | pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1214 - pub const SIMD_SSSE3: libc::c_uint = (1 << 7); [INFO] [stderr] 1214 + pub const SIMD_SSSE3: libc::c_uint = 1 << 7; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1215:36 [INFO] [stderr] | [INFO] [stderr] 1215 | pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1215 - pub const SIMD_MMX: libc::c_uint = (1 << 8); [INFO] [stderr] 1215 + pub const SIMD_MMX: libc::c_uint = 1 << 8; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1216:39 [INFO] [stderr] | [INFO] [stderr] 1216 | pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1216 - pub const SIMD_MMXEXT: libc::c_uint = (1 << 9); [INFO] [stderr] 1216 + pub const SIMD_MMXEXT: libc::c_uint = 1 << 9; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1217:37 [INFO] [stderr] | [INFO] [stderr] 1217 | pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1217 - pub const SIMD_SSE4: libc::c_uint = (1 << 10); [INFO] [stderr] 1217 + pub const SIMD_SSE4: libc::c_uint = 1 << 10; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1218:38 [INFO] [stderr] | [INFO] [stderr] 1218 | pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1218 - pub const SIMD_SSE42: libc::c_uint = (1 << 11); [INFO] [stderr] 1218 + pub const SIMD_SSE42: libc::c_uint = 1 << 11; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1219:37 [INFO] [stderr] | [INFO] [stderr] 1219 | pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1219 - pub const SIMD_AVX2: libc::c_uint = (1 << 12); [INFO] [stderr] 1219 + pub const SIMD_AVX2: libc::c_uint = 1 << 12; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1220:37 [INFO] [stderr] | [INFO] [stderr] 1220 | pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1220 - pub const SIMD_VFPU: libc::c_uint = (1 << 13); [INFO] [stderr] 1220 + pub const SIMD_VFPU: libc::c_uint = 1 << 13; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1221:35 [INFO] [stderr] | [INFO] [stderr] 1221 | pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1221 - pub const SIMD_PS: libc::c_uint = (1 << 14); [INFO] [stderr] 1221 + pub const SIMD_PS: libc::c_uint = 1 << 14; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1222:36 [INFO] [stderr] | [INFO] [stderr] 1222 | pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1222 - pub const SIMD_AES: libc::c_uint = (1 << 15); [INFO] [stderr] 1222 + pub const SIMD_AES: libc::c_uint = 1 << 15; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1223:38 [INFO] [stderr] | [INFO] [stderr] 1223 | pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1223 - pub const SIMD_VFPV3: libc::c_uint = (1 << 16); [INFO] [stderr] 1223 + pub const SIMD_VFPV3: libc::c_uint = 1 << 16; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1224:38 [INFO] [stderr] | [INFO] [stderr] 1224 | pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1224 - pub const SIMD_VFPV4: libc::c_uint = (1 << 17); [INFO] [stderr] 1224 + pub const SIMD_VFPV4: libc::c_uint = 1 << 17; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1225:39 [INFO] [stderr] | [INFO] [stderr] 1225 | pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1225 - pub const SIMD_POPCNT: libc::c_uint = (1 << 18); [INFO] [stderr] 1225 + pub const SIMD_POPCNT: libc::c_uint = 1 << 18; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1226:38 [INFO] [stderr] | [INFO] [stderr] 1226 | pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1226 - pub const SIMD_MOVBE: libc::c_uint = (1 << 19); [INFO] [stderr] 1226 + pub const SIMD_MOVBE: libc::c_uint = 1 << 19; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1906:47 [INFO] [stderr] | [INFO] [stderr] 1906 | pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1906 - pub const MEMORY_ACCESS_WRITE: libc::c_uint = (1 << 0); [INFO] [stderr] 1906 + pub const MEMORY_ACCESS_WRITE: libc::c_uint = 1 << 0; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1909:46 [INFO] [stderr] | [INFO] [stderr] 1909 | pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1909 - pub const MEMORY_ACCESS_READ: libc::c_uint = (1 << 1); [INFO] [stderr] 1909 + pub const MEMORY_ACCESS_READ: libc::c_uint = 1 << 1; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around assigned value [INFO] [stderr] --> /opt/rustwide/workdir/src/lib.rs:1913:46 [INFO] [stderr] | [INFO] [stderr] 1913 | pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 1913 - pub const MEMORY_TYPE_CACHED: libc::c_uint = (1 << 0); [INFO] [stderr] 1913 + pub const MEMORY_TYPE_CACHED: libc::c_uint = 1 << 0; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: 37 warnings emitted [INFO] [stdout] [INFO] [stderr] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "f958dae6144bc4a7182ab0dad689495e0d6c127c847f2c2a81378139f5203956", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f958dae6144bc4a7182ab0dad689495e0d6c127c847f2c2a81378139f5203956", kill_on_drop: false }` [INFO] [stdout] f958dae6144bc4a7182ab0dad689495e0d6c127c847f2c2a81378139f5203956