>>> oxipng: Building community/oxipng 8.0.0-r0 (using abuild 3.11.0_rc13-r0) started Sat, 22 Apr 2023 22:51:58 +0000 >>> oxipng: Checking sanity of /home/buildozer/aports/community/oxipng/APKBUILD... >>> oxipng: Analyzing dependencies... >>> oxipng: Installing for build: build-base cargo (1/7) Installing libffi (3.4.4-r2) (2/7) Installing xz-libs (5.4.2-r1) (3/7) Installing libxml2 (2.10.4-r2) (4/7) Installing llvm15-libs (15.0.7-r5) (5/7) Installing rust (1.69.0-r2) (6/7) Installing cargo (1.69.0-r2) (7/7) Installing .makedepends-oxipng (20230422.225159) Executing busybox-1.36.0-r7.trigger OK: 1120 MiB in 105 packages >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/v3.18/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 15 49.2M 15 7727k 0 0 8801k 0 0:00:05 --:--:-- 0:00:05 8801k 35 49.2M 35 17.5M 0 0 9554k 0 0:00:05 0:00:01 0:00:04 9553k 56 49.2M 56 27.6M 0 0 9840k 0 0:00:05 0:00:02 0:00:03 9840k 76 49.2M 76 37.7M 0 0 9968k 0 0:00:05 0:00:03 0:00:02 9968k 96 49.2M 96 47.7M 0 0 9.7M 0 0:00:05 0:00:04 0:00:01 9.7M 100 49.2M 100 49.2M 0 0 9.7M 0 0:00:05 0:00:05 --:--:-- 10.0M >>> oxipng: Fetching https://distfiles.alpinelinux.org/distfiles/v3.18/oxipng-8.0.0.tar.gz >>> oxipng: Checking sha512sums... oxipng-8.0.0.tar.gz: OK >>> oxipng: Unpacking /var/cache/distfiles/v3.18/oxipng-8.0.0.tar.gz... Updating crates.io index Downloading crates ... Downloaded bitvec v1.0.1 Downloaded funty v2.0.0 Downloaded libdeflate-sys v0.11.0 Downloaded iter-read v0.3.1 Downloaded libdeflater v0.11.0 Downloaded radium v0.7.0 Downloaded wyz v0.5.1 Downloaded zopfli v0.7.1 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 either v1.8.0 Compiling log v0.4.17 Compiling adler v1.0.2 Compiling radium v0.7.0 Compiling bitflags v1.3.2 Compiling crc-catalog v2.1.0 Compiling tap v1.0.1 Compiling once_cell v1.16.0 Compiling hashbrown v0.12.3 Compiling byteorder v1.4.3 Compiling termcolor v1.1.3 Compiling bytemuck v1.12.3 Compiling os_str_bytes v6.4.1 Compiling iter-read v0.3.1 Compiling typed-arena v2.0.1 Compiling textwrap v0.16.0 Compiling adler32 v1.2.0 Compiling funty v2.0.0 Compiling strsim v0.10.0 Compiling color_quant v1.1.0 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 crossbeam-deque v0.8.2 Compiling bitvec v1.0.1 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 libdeflater v0.11.0 Compiling clap v3.2.23 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 32.37s 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 crc32fast v1.3.2 Compiling rayon-core v1.10.1 Compiling either v1.8.0 Compiling log v0.4.17 Compiling cc v1.0.78 Compiling adler v1.0.2 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling hashbrown v0.12.3 Compiling os_str_bytes v6.4.1 Compiling byteorder v1.4.3 Compiling crc-catalog v2.1.0 Compiling termcolor v1.1.3 Compiling tap v1.0.1 Compiling once_cell v1.16.0 Compiling bytemuck v1.12.3 Compiling color_quant v1.1.0 Compiling strsim v0.10.0 Compiling funty v2.0.0 Compiling adler32 v1.2.0 Compiling iter-read v0.3.1 Compiling typed-arena v2.0.1 Compiling textwrap v0.16.0 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 clap_lex v0.2.4 Compiling thread_local v1.1.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 num-rational v0.4.1 Compiling indexmap v1.9.2 Compiling zopfli v0.7.1 Compiling rgb v0.8.34 Compiling flate2 v1.0.25 Compiling crossbeam-channel v0.5.6 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 libdeflate-sys v0.11.0 Compiling png v0.17.7 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 39.21s Running unittests src/lib.rs (target/debug/deps/oxipng-38ef0ebd919aa5f5) 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-d429f5d2a5b4a085) 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-02b4ce4631cfeb05) running 66 tests test filter_1_for_palette_1 ... ok test filter_0_for_palette_2 ... ok test filter_0_for_palette_1 ... ok test filter_3_for_palette_1 ... ok test filter_1_for_palette_2 ... ok test filter_4_for_palette_2 ... ok test filter_4_for_palette_1 ... ok test filter_2_for_palette_1 ... ok test filter_3_for_palette_2 ... ok test filter_5_for_palette_1 ... ok test filter_2_for_palette_2 ... ok test filter_5_for_palette_2 ... ok test filter_0_for_grayscale_8 ... ok test filter_0_for_grayscale_16 ... ok test filter_2_for_palette_4 ... ok test filter_5_for_palette_4 ... ok test filter_0_for_palette_4 ... ok test filter_2_for_grayscale_8 ... ok test filter_4_for_grayscale_8 ... ok test filter_1_for_grayscale_8 ... ok test filter_3_for_grayscale_16 ... ok test filter_2_for_grayscale_16 ... ok test filter_1_for_grayscale_16 ... ok test filter_3_for_grayscale_8 ... ok test filter_4_for_grayscale_16 ... ok test filter_1_for_palette_4 ... ok test filter_4_for_palette_4 ... ok test filter_0_for_grayscale_alpha_16 ... ok test filter_3_for_palette_4 ... ok test filter_2_for_grayscale_alpha_8 ... ok test filter_1_for_grayscale_alpha_16 ... ok test filter_0_for_grayscale_alpha_8 ... ok test filter_3_for_grayscale_alpha_8 ... ok test filter_4_for_grayscale_alpha_8 ... ok test filter_1_for_grayscale_alpha_8 ... ok test filter_3_for_grayscale_alpha_16 ... ok test filter_2_for_grayscale_alpha_16 ... ok test filter_5_for_grayscale_16 ... ok test filter_5_for_grayscale_8 ... ok test filter_0_for_rgb_8 ... ok test filter_4_for_grayscale_alpha_16 ... ok test filter_3_for_rgb_8 ... ok test filter_5_for_grayscale_alpha_8 ... ok test filter_4_for_rgb_8 ... ok test filter_1_for_rgb_8 ... ok test filter_0_for_rgba_8 ... ok test filter_2_for_rgb_8 ... ok test filter_5_for_grayscale_alpha_16 ... ok test filter_0_for_rgb_16 ... ok test filter_1_for_rgba_8 ... ok test filter_5_for_rgb_8 ... ok test filter_3_for_rgba_8 ... ok test filter_0_for_rgba_16 ... ok test filter_2_for_rgba_8 ... ok test filter_4_for_rgba_8 ... ok test filter_1_for_rgb_16 ... ok test filter_5_for_rgba_8 ... ok test filter_2_for_rgb_16 ... ok test filter_3_for_rgb_16 ... ok test filter_1_for_rgba_16 ... ok test filter_4_for_rgb_16 ... ok test filter_5_for_rgb_16 ... ok test filter_3_for_rgba_16 ... ok test filter_2_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 0.79s Running tests/flags.rs (target/debug/deps/flags-585cec0b59ec5558) running 13 tests test interlacing_1_to_0_small_files ... ok test interlacing_0_to_1_small_files ... ok test strip_headers_all ... ok test fix_errors ... ok test preserve_attrs ... ok test strip_headers_list ... ok test strip_headers_safe ... ok test strip_headers_none ... ok test interlacing_1_to_0 ... ok test verbose_mode ... 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 16.81s Running tests/interlaced.rs (target/debug/deps/interlaced-f79ac549b61124a9) running 55 tests test interlaced_palette_1_should_be_palette_1 ... ok test interlaced_grayscale_8_should_be_grayscale_8 ... ok test interlaced_palette_2_should_be_palette_2 ... ok test interlaced_palette_4_should_be_palette_2 ... ok test interlaced_grayscale_16_should_be_grayscale_16 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test interlaced_rgba_8_should_be_rgba_8 ... ok test interlaced_rgb_8_should_be_rgb_8 ... ok test interlaced_grayscale_16_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_rgb_16 ... ok test interlaced_small_files ... ok test interlaced_palette_2_should_be_palette_1 ... ok test interlaced_palette_4_should_be_palette_1 ... ok test interlaced_rgba_8_should_be_palette_1 ... ok test interlaced_rgb_8_should_be_palette_4 ... ok test interlaced_rgb_8_should_be_grayscale_8 ... ok test interlaced_rgb_8_should_be_palette_1 ... ok test interlaced_palette_8_should_be_palette_8 ... ok test interlaced_rgba_8_should_be_palette_2 ... ok test interlaced_rgb_8_should_be_palette_2 ... ok test interlaced_palette_4_should_be_palette_4 ... ok test interlaced_rgba_16_should_be_palette_1 ... ok test interlaced_rgb_16_should_be_palette_2 ... ok test interlaced_palette_8_should_be_palette_4 ... ok test interlaced_rgba_16_should_be_palette_2 ... ok test interlaced_rgba_16_should_be_palette_4 ... ok test interlaced_palette_8_should_be_palette_1 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_grayscale_8 ... ok test interlaced_rgba_8_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_palette_1 ... ok test interlaced_palette_8_should_be_palette_2 ... ok test interlaced_rgba_8_should_be_palette_4 ... ok test interlaced_rgb_16_should_be_palette_4 ... ok test interlaced_rgb_16_should_be_palette_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_8 ... ok test interlaced_rgb_8_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_grayscale_8 ... ok test interlaced_rgba_8_should_be_palette_8 ... ok test interlaced_rgba_16_should_be_grayscale_16 ... 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_rgba_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_8_should_be_grayscale_alpha_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_16 ... ok test interlaced_rgb_16_should_be_rgb_8 ... ok test interlaced_rgba_8_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_rgba_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 1.50s Running tests/interlacing.rs (target/debug/deps/interlacing-2fd456ab7bdb0c81) running 12 tests test deinterlace_palette_1 ... ok test interlace_palette_1 ... ok test deinterlace_palette_2 ... ok test interlace_palette_2 ... ok test deinterlace_palette_4 ... ok test interlace_palette_4 ... ok test deinterlace_palette_8 ... ok test interlace_palette_8 ... ok test deinterlace_rgb_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 0.50s Running tests/lib.rs (target/debug/deps/lib-3c89cb2b9e96598f) running 7 tests test optimize_corrupted ... ok test optimize_apng ... ok test optimize_from_memory_apng ... ok test optimize_from_memory_corrupted ... 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.01s Running tests/reduction.rs (target/debug/deps/reduction-6a1be81478d8cd5c) running 71 tests test palette_1_should_be_palette_1 ... ok test rgba_8_reduce_alpha ... ok test grayscale_alpha_8_reduce_alpha ... ok test palette_2_should_be_palette_2 ... ok test grayscale_8_should_be_grayscale_8 ... ok test grayscale_2_should_be_grayscale_1 ... ok test rgba_8_should_be_rgba_8 ... ok test grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test rgb_8_should_be_rgb_8 ... ok test grayscale_16_should_be_grayscale_16 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test grayscale_8_should_be_grayscale_4 ... ok test rgba_8_should_be_palette_1 ... ok test rgb_8_should_be_palette_1 ... ok test palette_4_should_be_palette_2 ... ok test grayscale_4_should_be_grayscale_1 ... ok test rgb_16_should_be_palette_1 ... ok test rgba_16_reduce_alpha ... ok test palette_8_should_be_palette_1 ... ok test rgb_16_should_be_palette_2 ... ok test rgba_8_should_be_palette_4 ... ok test palette_4_should_be_palette_4 ... ok test palette_8_should_be_palette_2 ... ok test rgb_8_should_be_palette_4 ... ok test palette_4_should_be_palette_1 ... ok test grayscale_alpha_16_reduce_alpha ... ok test rgba_8_should_be_palette_2 ... ok test rgb_16_should_be_rgb_16 ... ok test small_files ... ok test grayscale_16_should_be_grayscale_8 ... ok test palette_8_should_be_palette_4 ... ok test rgb_8_should_be_grayscale_8 ... ok test rgba_8_should_be_grayscale_8 ... ok test rgba_16_should_be_palette_2 ... ok test rgba_16_should_be_palette_1 ... ok test palette_should_be_reduced_with_unused ... ok test palette_should_be_reduced_with_dupes ... ok test grayscale_alpha_8_should_be_grayscale_8 ... ok test rgba_8_should_be_palette_8 ... ok test rgb_16_should_be_grayscale_8 ... ok test rgba_16_should_be_rgba_16 ... ok test grayscale_8_should_be_grayscale_1 ... ok test palette_2_should_be_palette_1 ... ok test grayscale_8_should_be_grayscale_2 ... ok test rgb_16_should_be_palette_4 ... ok test rgb_8_should_be_palette_2 ... ok test palette_8_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_8 ... ok test rgb_16_should_be_grayscale_16 ... ok test grayscale_alpha_16_should_be_grayscale_16 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test palette_should_be_reduced_with_both ... ok test grayscale_4_should_be_grayscale_2 ... ok test rgba_16_should_be_palette_4 ... ok test rgba_16_should_be_palette_8 ... ok test grayscale_alpha_8_should_be_grayscale_trns_8 ... ok test grayscale_alpha_16_should_be_grayscale_8 ... ok test rgba_16_should_be_grayscale_alpha_8 ... ok test rgb_16_should_be_palette_8 ... ok test grayscale_alpha_16_should_be_grayscale_trns_16 ... ok test rgb_8_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_16 ... ok test rgba_16_should_be_grayscale_alpha_16 ... ok test rgba_8_should_be_grayscale_alpha_8 ... ok test rgb_16_should_be_rgb_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_8 ... ok test rgba_16_should_be_rgba_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 1.02s Running tests/regression.rs (target/debug/deps/regression-19ae81bd8d2c01be) running 31 tests test issue_182 ... ok test issue_42 ... ok test issue_171 ... ok test issue_89 ... ok test issue_60 ... ok test issue_140 ... ok test issue_52_05 ... ok test issue_52_06 ... ok test issue_92_filter_0 ... ok test issue_82 ... ok test issue_92_filter_5 ... ok test issue_52_01 ... ok test issue_175 ... ok test issue_52_04 ... ok test issue_80 ... ok test issue_52_02 ... ok test issue_113 ... ok test issue_159 ... ok test issue_56 ... ok test issue_129 ... ok test issue_426_01 ... ok test issue_58 ... ok test issue_52_03 ... ok test issue_426_02 ... ok test issue_59 ... ok test issue_195 ... ok test issue_29 ... ok test issue_153 ... ok test issue_141 ... ok test issue_133 ... ok test issue_167 has been running for over 60 seconds test issue_167 ... ok test result: ok. 31 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 139.15s Running tests/strategies.rs (target/debug/deps/strategies-75c8a6723aac083a) running 5 tests test filter_bigent ... ok test filter_brute ... ok test filter_entropy ... 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.52s Doc-tests oxipng warning: unnecessary parentheses around index expression --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/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 --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/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 --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/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 --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/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 --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/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 --> /home/buildozer/aports/community/oxipng/src/oxipng-8.0.0/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-aarch64.so.1 so:libgcc_s.so.1 >>> oxipng*: Package size: 848.0 KB >>> oxipng*: Compressing data... >>> oxipng*: Create checksum... >>> oxipng*: Create oxipng-8.0.0-r0.apk >>> oxipng: Build complete at Sat, 22 Apr 2023 22:56:04 +0000 elapsed time 0h 4m 6s >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Uninstalling dependencies... (1/7) Purging .makedepends-oxipng (20230422.225159) (2/7) Purging cargo (1.69.0-r2) (3/7) Purging rust (1.69.0-r2) (4/7) Purging llvm15-libs (15.0.7-r5) (5/7) Purging libffi (3.4.4-r2) (6/7) Purging libxml2 (2.10.4-r2) (7/7) Purging xz-libs (5.4.2-r1) Executing busybox-1.36.0-r7.trigger OK: 408 MiB in 98 packages >>> oxipng: Updating the community/aarch64 repository index... >>> oxipng: Signing the index...