>>> oxipng: Building community/oxipng 8.0.0-r2 (using abuild 3.11.21-r0) started Fri, 22 Sep 2023 19:44:23 +0000 >>> oxipng: Checking sanity of /home/buildozer/aports/community/oxipng/APKBUILD... >>> oxipng: Analyzing dependencies... >>> oxipng: Installing for build: build-base cargo cargo-auditable (1/8) Installing libffi (3.4.4-r3) (2/8) Installing libxml2 (2.11.5-r0) (3/8) Installing llvm16-libs (16.0.6-r6) (4/8) Installing scudo-malloc (16.0.6-r3) (5/8) Installing rust (1.72.1-r0) (6/8) Installing cargo (1.72.1-r0) (7/8) Installing cargo-auditable (0.6.1-r3) (8/8) Installing .makedepends-oxipng (20230922.194425) Executing busybox-1.36.1-r8.trigger OK: 1125 MiB in 118 packages >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Cleaning up tmpdir >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/edge/oxipng-8.0.0.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 100 49.2M 100 49.2M 0 0 78.4M 0 --:--:-- --:--:-- --:--:-- 78.5M >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/edge/oxipng-8.0.0.tar.gz >>> oxipng: Checking sha512sums... oxipng-8.0.0.tar.gz: OK >>> oxipng: Unpacking /var/cache/distfiles/edge/oxipng-8.0.0.tar.gz... Compiling autocfg v1.1.0 Compiling cfg-if v1.0.0 Compiling libc v0.2.139 Compiling crossbeam-utils v0.8.14 Compiling scopeguard v1.1.0 Compiling rayon-core v1.10.1 Compiling crc32fast v1.3.2 Compiling cc v1.0.78 Compiling adler v1.0.2 Compiling either v1.8.0 Compiling log v0.4.17 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling os_str_bytes v6.4.1 Compiling bytemuck v1.12.3 Compiling hashbrown v0.12.3 Compiling once_cell v1.16.0 Compiling byteorder v1.4.3 Compiling crc-catalog v2.1.0 Compiling termcolor v1.1.3 Compiling tap v1.0.1 Compiling color_quant v1.1.0 Compiling textwrap v0.16.0 Compiling iter-read v0.3.1 Compiling strsim v0.10.0 Compiling adler32 v1.2.0 Compiling funty v2.0.0 Compiling typed-arena v2.0.1 Compiling rustc-hash v1.1.0 Compiling wild v2.1.0 Compiling miniz_oxide v0.6.2 Compiling crc v3.0.0 Compiling wyz v0.5.1 Compiling itertools v0.10.5 Compiling clap_lex v0.2.4 Compiling thread_local v1.1.4 Compiling rgb v0.8.34 Compiling memoffset v0.7.1 Compiling crossbeam-epoch v0.9.13 Compiling num-traits v0.2.15 Compiling num-integer v0.1.45 Compiling indexmap v1.9.2 Compiling num-rational v0.4.1 Compiling zopfli v0.7.1 Compiling crossbeam-channel v0.5.6 Compiling flate2 v1.0.25 Compiling bitvec v1.0.1 Compiling crossbeam-deque v0.8.2 Compiling num_cpus v1.15.0 Compiling atty v0.2.14 Compiling filetime v0.2.19 Compiling stderrlog v0.5.4 Compiling png v0.17.7 Compiling libdeflate-sys v0.11.0 Compiling rayon v1.6.1 Compiling image v0.24.5 Compiling clap v3.2.23 Compiling libdeflater v0.11.0 Compiling oxipng v8.0.0 (/home/buildozer/aports/community/oxipng/src/oxipng-8.0.0) warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:161:46 | 161 | byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 161 - byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) 161 + byte_map[byte] = palette_map[byte & 0x0F].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:162:36 | 162 | | (palette_map[(byte >> 4)].unwrap_or(0) << 4); | ^ ^ | help: remove these parentheses | 162 - | (palette_map[(byte >> 4)].unwrap_or(0) << 4); 162 + | (palette_map[byte >> 4].unwrap_or(0) << 4); | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:167:46 | 167 | byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) | ^ ^ | help: remove these parentheses | 167 - byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) 167 + byte_map[byte] = palette_map[byte & 0x03].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:168:36 | 168 | | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) | ^ ^ | help: remove these parentheses | 168 - | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) 168 + | (palette_map[(byte >> 2) & 0x03].unwrap_or(0) << 2) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:169:36 | 169 | | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) | ^ ^ | help: remove these parentheses | 169 - | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) 169 + | (palette_map[(byte >> 4) & 0x03].unwrap_or(0) << 4) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:170:36 | 170 | | (palette_map[(byte >> 6)].unwrap_or(0) << 6); | ^ ^ | help: remove these parentheses | 170 - | (palette_map[(byte >> 6)].unwrap_or(0) << 6); 170 + | (palette_map[byte >> 6].unwrap_or(0) << 6); | warning: `oxipng` (lib) generated 6 warnings (run `cargo fix --lib -p oxipng` to apply 6 suggestions) Finished release [optimized] target(s) in 53.35s Compiling autocfg v1.1.0 Compiling cfg-if v1.0.0 Compiling libc v0.2.139 Compiling crossbeam-utils v0.8.14 Compiling scopeguard v1.1.0 Compiling rayon-core v1.10.1 Compiling crc32fast v1.3.2 Compiling adler v1.0.2 Compiling cc v1.0.78 Compiling log v0.4.17 Compiling either v1.8.0 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling termcolor v1.1.3 Compiling crc-catalog v2.1.0 Compiling once_cell v1.16.0 Compiling bytemuck v1.12.3 Compiling hashbrown v0.12.3 Compiling tap v1.0.1 Compiling byteorder v1.4.3 Compiling os_str_bytes v6.4.1 Compiling adler32 v1.2.0 Compiling funty v2.0.0 Compiling strsim v0.10.0 Compiling color_quant v1.1.0 Compiling iter-read v0.3.1 Compiling textwrap v0.16.0 Compiling typed-arena v2.0.1 Compiling wild v2.1.0 Compiling rustc-hash v1.1.0 Compiling crc v3.0.0 Compiling miniz_oxide v0.6.2 Compiling wyz v0.5.1 Compiling itertools v0.10.5 Compiling thread_local v1.1.4 Compiling clap_lex v0.2.4 Compiling memoffset v0.7.1 Compiling crossbeam-epoch v0.9.13 Compiling num-traits v0.2.15 Compiling num-integer v0.1.45 Compiling indexmap v1.9.2 Compiling num-rational v0.4.1 Compiling rgb v0.8.34 Compiling zopfli v0.7.1 Compiling flate2 v1.0.25 Compiling crossbeam-channel v0.5.6 Compiling bitvec v1.0.1 Compiling crossbeam-deque v0.8.2 Compiling libdeflate-sys v0.11.0 Compiling png v0.17.7 Compiling num_cpus v1.15.0 Compiling atty v0.2.14 Compiling filetime v0.2.19 Compiling stderrlog v0.5.4 Compiling rayon v1.6.1 Compiling image v0.24.5 Compiling clap v3.2.23 Compiling libdeflater v0.11.0 Compiling oxipng v8.0.0 (/home/buildozer/aports/community/oxipng/src/oxipng-8.0.0) warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:161:46 | 161 | byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 161 - byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) 161 + byte_map[byte] = palette_map[byte & 0x0F].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:162:36 | 162 | | (palette_map[(byte >> 4)].unwrap_or(0) << 4); | ^ ^ | help: remove these parentheses | 162 - | (palette_map[(byte >> 4)].unwrap_or(0) << 4); 162 + | (palette_map[byte >> 4].unwrap_or(0) << 4); | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:167:46 | 167 | byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) | ^ ^ | help: remove these parentheses | 167 - byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) 167 + byte_map[byte] = palette_map[byte & 0x03].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:168:36 | 168 | | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) | ^ ^ | help: remove these parentheses | 168 - | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) 168 + | (palette_map[(byte >> 2) & 0x03].unwrap_or(0) << 2) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:169:36 | 169 | | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) | ^ ^ | help: remove these parentheses | 169 - | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) 169 + | (palette_map[(byte >> 4) & 0x03].unwrap_or(0) << 4) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:170:36 | 170 | | (palette_map[(byte >> 6)].unwrap_or(0) << 6); | ^ ^ | help: remove these parentheses | 170 - | (palette_map[(byte >> 6)].unwrap_or(0) << 6); 170 + | (palette_map[byte >> 6].unwrap_or(0) << 6); | warning: `oxipng` (lib) generated 6 warnings (run `cargo fix --lib -p oxipng` to apply 6 suggestions) warning: `oxipng` (lib test) generated 6 warnings (6 duplicates) Finished test [optimized + debuginfo] target(s) in 31.16s Running unittests src/lib.rs (target/debug/deps/oxipng-693711066c13ccf3) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running unittests src/main.rs (target/debug/deps/oxipng-77bad334251b5c7f) running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Running tests/filters.rs (target/debug/deps/filters-f59ebbc905ccdfee) running 66 tests test filter_0_for_palette_1 ... ok test filter_1_for_palette_1 ... ok test filter_2_for_palette_1 ... ok test filter_0_for_palette_2 ... ok test filter_1_for_palette_2 ... ok test filter_2_for_palette_2 ... ok test filter_0_for_grayscale_8 ... ok test filter_3_for_palette_1 ... ok test filter_0_for_palette_4 ... ok test filter_2_for_palette_4 ... ok test filter_1_for_palette_4 ... ok test filter_0_for_grayscale_16 ... ok test filter_2_for_grayscale_8 ... ok test filter_3_for_palette_2 ... ok test filter_1_for_grayscale_8 ... ok test filter_1_for_grayscale_16 ... ok test filter_0_for_grayscale_alpha_8 ... ok test filter_2_for_grayscale_16 ... ok test filter_3_for_grayscale_8 ... ok test filter_3_for_palette_4 ... ok test filter_3_for_grayscale_16 ... ok test filter_4_for_palette_1 ... ok test filter_0_for_grayscale_alpha_16 ... ok test filter_4_for_palette_2 ... ok test filter_1_for_grayscale_alpha_8 ... ok test filter_2_for_grayscale_alpha_16 ... ok test filter_2_for_grayscale_alpha_8 ... ok test filter_1_for_grayscale_alpha_16 ... ok test filter_4_for_grayscale_8 ... ok test filter_3_for_grayscale_alpha_8 ... ok test filter_5_for_palette_1 ... ok test filter_5_for_palette_2 ... ok test filter_4_for_grayscale_16 ... ok test filter_4_for_palette_4 ... ok test filter_3_for_grayscale_alpha_16 ... ok test filter_0_for_rgb_8 ... ok test filter_2_for_rgb_8 ... ok test filter_5_for_grayscale_8 ... ok test filter_5_for_palette_4 ... ok test filter_0_for_rgba_8 ... ok test filter_1_for_rgb_8 ... ok test filter_5_for_grayscale_16 ... ok test filter_4_for_grayscale_alpha_8 ... ok test filter_4_for_grayscale_alpha_16 ... ok test filter_0_for_rgb_16 ... ok test filter_5_for_grayscale_alpha_8 ... ok test filter_5_for_grayscale_alpha_16 ... ok test filter_3_for_rgb_8 ... ok test filter_2_for_rgba_8 ... ok test filter_1_for_rgba_8 ... ok test filter_5_for_rgb_8 ... ok test filter_2_for_rgb_16 ... ok test filter_0_for_rgba_16 ... ok test filter_3_for_rgba_8 ... ok test filter_4_for_rgb_8 ... ok test filter_4_for_rgba_8 ... ok test filter_1_for_rgba_16 ... ok test filter_1_for_rgb_16 ... ok test filter_4_for_rgb_16 ... ok test filter_3_for_rgb_16 ... ok test filter_5_for_rgba_8 ... ok test filter_2_for_rgba_16 ... ok test filter_5_for_rgb_16 ... ok test filter_3_for_rgba_16 ... ok test filter_4_for_rgba_16 ... ok test filter_5_for_rgba_16 ... ok test result: ok. 66 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.95s Running tests/flags.rs (target/debug/deps/flags-c774c16cadafb881) running 13 tests test interlacing_1_to_0_small_files ... ok test interlacing_0_to_1_small_files ... ok test strip_headers_list ... ok test verbose_mode ... ok test strip_headers_safe ... ok test interlacing_1_to_0 ... ok test strip_headers_none ... ok test preserve_attrs ... ok test strip_headers_all ... ok test fix_errors ... ok test interlacing_0_to_1 ... ok test interlaced_0_to_1_other_filter_mode ... ok test zopfli_mode ... ok test result: ok. 13 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 21.43s Running tests/interlaced.rs (target/debug/deps/interlaced-c523819c60a6761b) running 55 tests test interlaced_palette_2_should_be_palette_2 ... ok test interlaced_grayscale_8_should_be_grayscale_8 ... ok test interlaced_grayscale_16_should_be_grayscale_16 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test interlaced_palette_4_should_be_palette_2 ... ok test interlaced_palette_1_should_be_palette_1 ... ok test interlaced_palette_2_should_be_palette_1 ... ok test interlaced_palette_4_should_be_palette_1 ... ok test interlaced_palette_8_should_be_palette_2 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test interlaced_rgb_8_should_be_palette_2 ... ok test interlaced_palette_4_should_be_palette_4 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_8 ... ok test interlaced_rgb_8_should_be_palette_4 ... ok test interlaced_grayscale_16_should_be_grayscale_8 ... ok test interlaced_palette_8_should_be_palette_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_8 ... ok test interlaced_palette_8_should_be_palette_1 ... ok test interlaced_rgb_8_should_be_palette_1 ... ok test interlaced_rgb_8_should_be_rgb_8 ... ok test interlaced_rgb_16_should_be_rgb_16 ... ok test interlaced_rgb_16_should_be_palette_2 ... ok test interlaced_rgb_16_should_be_palette_8 ... ok test interlaced_small_files ... ok test interlaced_rgb_8_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_palette_4 ... ok test interlaced_palette_8_should_be_palette_4 ... ok test interlaced_rgba_16_should_be_palette_1 ... ok test interlaced_rgb_16_should_be_palette_1 ... ok test interlaced_rgba_16_should_be_palette_2 ... ok test interlaced_rgb_16_should_be_grayscale_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_8_should_be_palette_1 ... ok test interlaced_rgba_16_should_be_palette_4 ... ok test interlaced_rgba_8_should_be_palette_2 ... ok test interlaced_rgba_8_should_be_palette_4 ... ok test interlaced_rgba_8_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_grayscale_16 ... ok test interlaced_rgba_8_should_be_grayscale_8 ... ok test interlaced_rgb_8_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_16 ... ok test interlaced_rgba_16_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_16_should_be_grayscale_8 ... ok test interlaced_rgba_8_should_be_grayscale_alpha_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_16 ... ok test interlaced_rgb_16_should_be_grayscale_16 ... ok test interlaced_rgba_16_should_be_rgba_16 ... ok test interlaced_rgb_16_should_be_rgb_8 ... ok test interlaced_rgba_8_should_be_rgba_8 ... ok test interlaced_rgba_8_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_rgba_8 ... ok test interlaced_rgba_16_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_rgb_16 ... ok test interlaced_odd_width ... ok test result: ok. 55 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 3.15s Running tests/interlacing.rs (target/debug/deps/interlacing-614ad8cd09140b32) running 12 tests test deinterlace_palette_1 ... ok test deinterlace_palette_2 ... ok test interlace_palette_2 ... ok test interlace_palette_1 ... ok test deinterlace_palette_4 ... ok test interlace_palette_4 ... ok test deinterlace_rgb_8 ... ok test deinterlace_palette_8 ... ok test interlace_palette_8 ... ok test interlace_rgb_8 ... ok test deinterlace_rgb_16 ... ok test interlace_rgb_16 ... ok test result: ok. 12 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.23s Running tests/lib.rs (target/debug/deps/lib-9d58502bef44e1b4) running 7 tests test optimize_corrupted ... ok test optimize_from_memory_corrupted ... ok test optimize_apng ... ok test optimize_from_memory_apng ... ok test optimize ... ok test optimize_from_memory ... ok test optimize_srgb_icc ... ok test result: ok. 7 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.03s Running tests/reduction.rs (target/debug/deps/reduction-885b4e4ad170e164) running 71 tests test palette_2_should_be_palette_2 ... ok test palette_4_should_be_palette_1 ... ok test grayscale_4_should_be_grayscale_1 ... ok test grayscale_8_should_be_grayscale_8 ... ok test palette_8_should_be_palette_1 ... ok test grayscale_2_should_be_grayscale_1 ... ok test grayscale_16_should_be_grayscale_16 ... ok test palette_4_should_be_palette_2 ... ok test grayscale_4_should_be_grayscale_2 ... ok test grayscale_alpha_16_reduce_alpha ... ok test grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test palette_8_should_be_palette_4 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test grayscale_16_should_be_grayscale_8 ... ok test grayscale_8_should_be_grayscale_4 ... ok test grayscale_alpha_8_reduce_alpha ... ok test palette_2_should_be_palette_1 ... ok test palette_should_be_reduced_with_both ... ok test palette_4_should_be_palette_4 ... ok test rgb_8_should_be_palette_1 ... ok test rgb_8_should_be_palette_2 ... ok test palette_should_be_reduced_with_unused ... ok test palette_8_should_be_palette_8 ... ok test palette_8_should_be_palette_2 ... ok test palette_should_be_reduced_with_dupes ... ok test rgb_16_should_be_palette_2 ... ok test rgba_16_reduce_alpha ... ok test grayscale_8_should_be_grayscale_1 ... ok test grayscale_8_should_be_grayscale_2 ... ok test grayscale_alpha_16_should_be_grayscale_16 ... ok test rgb_8_should_be_rgb_8 ... ok test grayscale_alpha_8_should_be_grayscale_8 ... ok test rgba_8_reduce_alpha ... ok test grayscale_alpha_16_should_be_grayscale_8 ... ok test grayscale_alpha_8_should_be_grayscale_trns_8 ... ok test rgb_16_should_be_rgb_16 ... ok test rgb_8_should_be_palette_4 ... ok test rgb_16_should_be_grayscale_8 ... ok test rgba_16_should_be_palette_1 ... ok test palette_1_should_be_palette_1 ... ok test small_files ... ok test rgba_16_should_be_palette_4 ... ok test rgb_8_should_be_grayscale_8 ... ok test rgb_16_should_be_grayscale_16 ... ok test rgb_16_should_be_palette_1 ... ok test rgba_8_should_be_palette_1 ... ok test rgba_16_should_be_palette_2 ... ok test rgba_8_should_be_palette_2 ... ok test rgb_16_should_be_palette_4 ... ok test rgba_8_should_be_grayscale_8 ... ok test rgba_16_should_be_grayscale_alpha_8 ... ok test rgba_8_should_be_palette_4 ... ok test rgba_16_should_be_grayscale_8 ... ok test grayscale_alpha_16_should_be_grayscale_trns_16 ... ok test rgba_16_should_be_grayscale_16 ... ok test rgba_16_should_be_palette_8 ... ok test rgb_16_should_be_palette_8 ... ok test rgb_8_should_be_palette_8 ... ok test rgba_8_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_alpha_16 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test rgba_8_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_rgb_8 ... ok test rgb_16_should_be_rgb_8 ... ok test rgba_16_should_be_rgba_16 ... ok test rgba_8_should_be_rgba_8 ... ok test rgba_16_should_be_rgba_8 ... ok test rgba_8_should_be_rgb_trns_8 ... ok test rgba_8_should_be_rgb_8 ... ok test rgba_16_should_be_rgb_trns_16 ... ok test rgba_16_should_be_rgb_16 ... ok test result: ok. 71 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.37s Running tests/regression.rs (target/debug/deps/regression-ea984347a7f98cd6) running 30 tests test issue_182 ... ok test issue_171 ... ok test issue_42 ... ok test issue_92_filter_0 ... ok test issue_140 ... ok test issue_92_filter_5 ... ok test issue_60 ... ok test issue_80 ... ok test issue_82 ... ok test issue_159 ... ok test issue_52_01 ... ok test issue_175 ... ok test issue_52_05 ... ok test issue_52_04 ... ok test issue_52_06 ... ok test issue_129 ... ok test issue_56 ... ok test issue_52_02 ... ok test issue_426_01 ... ok test issue_59 ... ok test issue_58 ... ok test issue_29 ... ok test issue_89 ... ok test issue_52_03 ... ok test issue_426_02 ... ok test issue_113 ... ok test issue_195 ... ok test issue_153 ... ok test issue_141 ... ok test issue_133 ... ok test result: ok. 30 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 14.60s Running tests/strategies.rs (target/debug/deps/strategies-9d4142cebe3ce600) running 5 tests test filter_bigent ... ok test filter_entropy ... ok test filter_brute ... ok test filter_bigrams ... ok test filter_minsum ... ok test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.90s Doc-tests oxipng warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:161:46 | 161 | byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 161 - byte_map[byte] = palette_map[(byte & 0x0F)].unwrap_or(0) 161 + byte_map[byte] = palette_map[byte & 0x0F].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:162:36 | 162 | | (palette_map[(byte >> 4)].unwrap_or(0) << 4); | ^ ^ | help: remove these parentheses | 162 - | (palette_map[(byte >> 4)].unwrap_or(0) << 4); 162 + | (palette_map[byte >> 4].unwrap_or(0) << 4); | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:167:46 | 167 | byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) | ^ ^ | help: remove these parentheses | 167 - byte_map[byte] = palette_map[(byte & 0x03)].unwrap_or(0) 167 + byte_map[byte] = palette_map[byte & 0x03].unwrap_or(0) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:168:36 | 168 | | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) | ^ ^ | help: remove these parentheses | 168 - | (palette_map[((byte >> 2) & 0x03)].unwrap_or(0) << 2) 168 + | (palette_map[(byte >> 2) & 0x03].unwrap_or(0) << 2) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:169:36 | 169 | | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) | ^ ^ | help: remove these parentheses | 169 - | (palette_map[((byte >> 4) & 0x03)].unwrap_or(0) << 4) 169 + | (palette_map[(byte >> 4) & 0x03].unwrap_or(0) << 4) | warning: unnecessary parentheses around index expression --> src/reduction/mod.rs:170:36 | 170 | | (palette_map[(byte >> 6)].unwrap_or(0) << 6); | ^ ^ | help: remove these parentheses | 170 - | (palette_map[(byte >> 6)].unwrap_or(0) << 6); 170 + | (palette_map[byte >> 6].unwrap_or(0) << 6); | warning: 6 warnings emitted running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s >>> oxipng: Entering fakeroot... >>> oxipng*: Running postcheck for oxipng >>> oxipng*: Preparing package oxipng... >>> oxipng*: Stripping binaries >>> oxipng*: Scanning shared objects >>> oxipng*: Tracing dependencies... so:libc.musl-x86.so.1 so:libgcc_s.so.1 >>> oxipng*: Package size: 928.0 KB >>> oxipng*: Compressing data... >>> oxipng*: Create checksum... >>> oxipng*: Create oxipng-8.0.0-r2.apk >>> oxipng: Build complete at Fri, 22 Sep 2023 19:46:45 +0000 elapsed time 0h 2m 22s >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Uninstalling dependencies... (1/8) Purging .makedepends-oxipng (20230922.194425) (2/8) Purging cargo (1.72.1-r0) (3/8) Purging rust (1.72.1-r0) (4/8) Purging cargo-auditable (0.6.1-r3) (5/8) Purging llvm16-libs (16.0.6-r6) (6/8) Purging scudo-malloc (16.0.6-r3) (7/8) Purging libffi (3.4.4-r3) (8/8) Purging libxml2 (2.11.5-r0) Executing busybox-1.36.1-r8.trigger OK: 379 MiB in 110 packages >>> oxipng: Updating the community/x86 repository index... >>> oxipng: Signing the index...