>>> oxipng: Building community/oxipng 8.0.0-r0 (using abuild 3.11.0_rc13-r0) started Mon, 24 Apr 2023 07:36:23 +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 (20230424.073624) Executing busybox-1.36.0-r7.trigger OK: 1177 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 0 49.2M 0 416k 0 0 396k 0 0:02:07 0:00:01 0:02:06 397k 55 49.2M 55 27.1M 0 0 13.6M 0 0:00:03 0:00:01 0:00:02 13.6M 89 49.2M 89 43.9M 0 0 14.4M 0 0:00:03 0:00:03 --:--:-- 14.4M 100 49.2M 100 49.2M 0 0 14.9M 0 0:00:03 0:00:03 --:--:-- 14.9M >>> 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 crc-catalog v2.1.0 Downloaded radium v0.7.0 Downloaded rayon-core v1.10.1 Downloaded bitvec v1.0.1 Downloaded image v0.24.5 Downloaded crossbeam-epoch v0.9.13 Downloaded either v1.8.0 Downloaded iter-read v0.3.1 Downloaded crossbeam-deque v0.8.2 Downloaded rgb v0.8.34 Downloaded rustc-hash v1.1.0 Downloaded stderrlog v0.5.4 Downloaded adler32 v1.2.0 Downloaded libdeflater v0.11.0 Downloaded typed-arena v2.0.1 Downloaded zopfli v0.7.1 Downloaded png v0.17.7 Downloaded bytemuck v1.12.3 Downloaded libdeflate-sys v0.11.0 Downloaded memoffset v0.7.1 Downloaded tap v1.0.1 Downloaded clap_lex v0.2.4 Downloaded crc v3.0.0 Downloaded clap v3.2.23 Downloaded color_quant v1.1.0 Downloaded crossbeam-utils v0.8.14 Downloaded wild v2.1.0 Downloaded funty v2.0.0 Downloaded wyz v0.5.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 crc32fast v1.3.2 Compiling rayon-core v1.10.1 Compiling either v1.8.0 Compiling adler v1.0.2 Compiling cc v1.0.78 Compiling log v0.4.17 Compiling miniz_oxide v0.6.2 Compiling radium v0.7.0 Compiling bitflags v1.3.2 Compiling bytemuck v1.12.3 Compiling memoffset v0.7.1 Compiling crossbeam-epoch v0.9.13 Compiling num-traits v0.2.15 Compiling crossbeam-channel v0.5.6 Compiling num-integer v0.1.45 Compiling num-rational v0.4.1 Compiling num_cpus v1.15.0 Compiling indexmap v1.9.2 Compiling crossbeam-deque v0.8.2 Compiling atty v0.2.14 Compiling flate2 v1.0.25 Compiling byteorder v1.4.3 Compiling hashbrown v0.12.3 Compiling once_cell v1.16.0 Compiling termcolor v1.1.3 Compiling libdeflate-sys v0.11.0 Compiling crc-catalog v2.1.0 Compiling rayon v1.6.1 Compiling tap v1.0.1 Compiling os_str_bytes v6.4.1 Compiling wyz v0.5.1 Compiling crc v3.0.0 Compiling clap_lex v0.2.4 Compiling thread_local v1.1.4 Compiling png v0.17.7 Compiling iter-read v0.3.1 Compiling typed-arena v2.0.1 Compiling strsim v0.10.0 Compiling textwrap v0.16.0 Compiling color_quant v1.1.0 Compiling funty v2.0.0 Compiling adler32 v1.2.0 Compiling zopfli v0.7.1 Compiling stderrlog v0.5.4 Compiling bitvec v1.0.1 Compiling image v0.24.5 Compiling filetime v0.2.19 Compiling libdeflater v0.11.0 Compiling rgb v0.8.34 Compiling itertools v0.10.5 Compiling rustc-hash v1.1.0 Compiling wild v2.1.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 42.79s 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 either v1.8.0 Compiling cc v1.0.78 Compiling adler v1.0.2 Compiling log v0.4.17 Compiling miniz_oxide v0.6.2 Compiling bitflags v1.3.2 Compiling radium v0.7.0 Compiling memoffset v0.7.1 Compiling crossbeam-epoch v0.9.13 Compiling num-traits v0.2.15 Compiling crossbeam-channel v0.5.6 Compiling num-integer v0.1.45 Compiling num_cpus v1.15.0 Compiling crossbeam-deque v0.8.2 Compiling libdeflate-sys v0.11.0 Compiling num-rational v0.4.1 Compiling indexmap v1.9.2 Compiling rayon v1.6.1 Compiling atty v0.2.14 Compiling flate2 v1.0.25 Compiling termcolor v1.1.3 Compiling bytemuck v1.12.3 Compiling byteorder v1.4.3 Compiling os_str_bytes v6.4.1 Compiling once_cell v1.16.0 Compiling hashbrown v0.12.3 Compiling tap v1.0.1 Compiling crc-catalog v2.1.0 Compiling wyz v0.5.1 Compiling thread_local v1.1.4 Compiling crc v3.0.0 Compiling clap_lex v0.2.4 Compiling png v0.17.7 Compiling typed-arena v2.0.1 Compiling textwrap v0.16.0 Compiling strsim v0.10.0 Compiling adler32 v1.2.0 Compiling funty v2.0.0 Compiling color_quant v1.1.0 Compiling iter-read v0.3.1 Compiling zopfli v0.7.1 Compiling bitvec v1.0.1 Compiling image v0.24.5 Compiling clap v3.2.23 Compiling libdeflater v0.11.0 Compiling stderrlog v0.5.4 Compiling rgb v0.8.34 Compiling filetime v0.2.19 Compiling itertools v0.10.5 Compiling wild v2.1.0 Compiling rustc-hash v1.1.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 32.50s Running unittests src/lib.rs (target/debug/deps/oxipng-5b909a4f6843d236) 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-9f60b4f20e1a3cf3) 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-d7dfc51ad1eadf89) running 66 tests test filter_0_for_palette_1 ... ok test filter_0_for_palette_2 ... ok test filter_0_for_palette_4 ... ok test filter_0_for_grayscale_8 ... ok test filter_0_for_grayscale_16 ... ok test filter_0_for_grayscale_alpha_8 ... ok test filter_0_for_grayscale_alpha_16 ... ok test filter_1_for_grayscale_16 ... ok test filter_1_for_grayscale_8 ... ok test filter_1_for_palette_1 ... ok test filter_0_for_rgb_8 ... ok test filter_1_for_grayscale_alpha_16 ... ok test filter_1_for_palette_2 ... ok test filter_1_for_palette_4 ... ok test filter_1_for_grayscale_alpha_8 ... ok test filter_0_for_rgba_8 ... ok test filter_0_for_rgb_16 ... ok test filter_2_for_grayscale_8 ... ok test filter_2_for_grayscale_16 ... ok test filter_2_for_palette_1 ... ok test filter_1_for_rgb_8 ... ok test filter_2_for_palette_2 ... ok test filter_2_for_grayscale_alpha_16 ... ok test filter_2_for_palette_4 ... ok test filter_2_for_grayscale_alpha_8 ... ok test filter_0_for_rgba_16 ... ok test filter_3_for_grayscale_16 ... ok test filter_3_for_grayscale_8 ... ok test filter_1_for_rgb_16 ... ok test filter_1_for_rgba_8 ... ok test filter_3_for_palette_1 ... ok test filter_2_for_rgb_8 ... ok test filter_3_for_palette_2 ... ok test filter_3_for_palette_4 ... ok test filter_1_for_rgba_16 ... ok test filter_3_for_grayscale_alpha_16 ... ok test filter_3_for_grayscale_alpha_8 ... ok test filter_2_for_rgb_16 ... ok test filter_2_for_rgba_8 ... ok test filter_4_for_grayscale_16 ... ok test filter_4_for_grayscale_8 ... ok test filter_4_for_palette_1 ... ok test filter_4_for_palette_2 ... ok test filter_3_for_rgb_8 ... ok test filter_4_for_palette_4 ... ok test filter_3_for_rgb_16 ... ok test filter_4_for_grayscale_alpha_8 ... ok test filter_4_for_grayscale_alpha_16 ... ok test filter_2_for_rgba_16 ... ok test filter_3_for_rgba_8 ... ok test filter_5_for_grayscale_8 ... ok test filter_5_for_grayscale_16 ... ok test filter_5_for_palette_1 ... ok test filter_5_for_palette_2 ... ok test filter_5_for_grayscale_alpha_16 ... ok test filter_4_for_rgb_8 ... ok test filter_3_for_rgba_16 ... ok test filter_5_for_palette_4 ... ok test filter_5_for_grayscale_alpha_8 ... ok test filter_4_for_rgb_16 ... ok test filter_4_for_rgba_8 ... ok test filter_5_for_rgb_8 ... ok test filter_4_for_rgba_16 ... ok test filter_5_for_rgba_8 ... ok test filter_5_for_rgb_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 3.14s Running tests/flags.rs (target/debug/deps/flags-9d5dd97ba0e1dd86) running 13 tests test interlacing_1_to_0_small_files ... ok test interlacing_0_to_1_small_files ... ok test preserve_attrs ... ok test strip_headers_list ... ok test interlacing_1_to_0 ... ok test fix_errors ... ok test strip_headers_none ... ok test strip_headers_all ... ok test interlacing_0_to_1 ... ok test interlaced_0_to_1_other_filter_mode ... ok test strip_headers_safe ... ok test verbose_mode ... ok test zopfli_mode ... ok test result: ok. 13 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 11.89s Running tests/interlaced.rs (target/debug/deps/interlaced-dc6f91c0b64b8c74) running 55 tests 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_8 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test interlaced_palette_1_should_be_palette_1 ... ok test interlaced_grayscale_16_should_be_grayscale_8 ... ok test interlaced_palette_2_should_be_palette_2 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_8 ... ok test interlaced_palette_2_should_be_palette_1 ... ok test interlaced_grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test interlaced_palette_4_should_be_palette_1 ... ok test interlaced_palette_4_should_be_palette_2 ... ok test interlaced_palette_4_should_be_palette_4 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_16 ... ok test interlaced_palette_8_should_be_palette_1 ... ok test interlaced_palette_8_should_be_palette_2 ... ok test interlaced_palette_8_should_be_palette_4 ... ok test interlaced_grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgb_16_should_be_palette_1 ... ok test interlaced_rgb_16_should_be_palette_2 ... ok test interlaced_rgb_16_should_be_grayscale_8 ... ok test interlaced_rgb_16_should_be_palette_4 ... ok test interlaced_rgb_16_should_be_palette_8 ... ok test interlaced_palette_8_should_be_palette_8 ... ok test interlaced_rgb_16_should_be_grayscale_16 ... ok test interlaced_rgb_8_should_be_palette_1 ... ok test interlaced_rgb_8_should_be_palette_2 ... ok test interlaced_rgb_8_should_be_grayscale_8 ... ok test interlaced_rgb_8_should_be_palette_4 ... ok test interlaced_rgb_16_should_be_rgb_16 ... ok test interlaced_rgb_8_should_be_palette_8 ... ok test interlaced_rgb_16_should_be_rgb_8 ... ok test interlaced_rgb_8_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_palette_2 ... ok test interlaced_rgba_16_should_be_palette_1 ... ok test interlaced_rgba_16_should_be_grayscale_16 ... ok test interlaced_rgba_16_should_be_grayscale_8 ... ok test interlaced_rgba_16_should_be_palette_4 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_16_should_be_grayscale_alpha_16 ... ok test interlaced_odd_width ... ok test interlaced_rgba_16_should_be_palette_8 ... ok test interlaced_rgba_8_should_be_palette_1 ... ok test interlaced_rgba_8_should_be_grayscale_8 ... ok test interlaced_rgba_8_should_be_palette_2 ... ok test interlaced_rgba_8_should_be_grayscale_alpha_8 ... ok test interlaced_rgba_16_should_be_rgb_8 ... ok test interlaced_rgba_16_should_be_rgba_16 ... ok test interlaced_small_files ... ok test interlaced_rgba_8_should_be_palette_4 ... ok test interlaced_rgba_16_should_be_rgba_8 ... ok test interlaced_rgba_8_should_be_palette_8 ... ok test interlaced_rgba_8_should_be_rgb_8 ... ok test interlaced_rgba_8_should_be_rgba_8 ... ok test interlaced_rgba_16_should_be_rgb_16 ... ok test result: ok. 55 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 3.24s Running tests/interlacing.rs (target/debug/deps/interlacing-b83bbfbc021e5edc) running 12 tests test deinterlace_palette_1 ... ok test deinterlace_palette_2 ... ok test interlace_palette_1 ... 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.76s Running tests/lib.rs (target/debug/deps/lib-a03545a89a8e8acb) running 7 tests test optimize_corrupted ... ok test optimize_apng ... ok test optimize_from_memory_corrupted ... ok test optimize_from_memory_apng ... ok test optimize_from_memory ... ok test optimize ... 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-f11a85aee607679a) running 71 tests test grayscale_8_should_be_grayscale_1 ... ok test grayscale_2_should_be_grayscale_1 ... ok test grayscale_4_should_be_grayscale_1 ... ok test grayscale_alpha_16_reduce_alpha ... ok test grayscale_4_should_be_grayscale_2 ... ok test grayscale_16_should_be_grayscale_16 ... ok test grayscale_8_should_be_grayscale_2 ... ok test grayscale_8_should_be_grayscale_4 ... ok test grayscale_16_should_be_grayscale_8 ... ok test grayscale_8_should_be_grayscale_8 ... ok test grayscale_alpha_8_reduce_alpha ... ok test grayscale_alpha_16_should_be_grayscale_alpha_16 ... ok test palette_1_should_be_palette_1 ... ok test grayscale_alpha_8_should_be_grayscale_alpha_8 ... ok test palette_2_should_be_palette_2 ... ok test grayscale_alpha_16_should_be_grayscale_8 ... ok test palette_2_should_be_palette_1 ... ok test grayscale_alpha_8_should_be_grayscale_8 ... ok test grayscale_alpha_8_should_be_grayscale_trns_8 ... ok test palette_4_should_be_palette_2 ... ok test palette_4_should_be_palette_1 ... ok test grayscale_alpha_16_should_be_grayscale_trns_16 ... ok test palette_4_should_be_palette_4 ... ok test grayscale_alpha_16_should_be_grayscale_16 ... ok test palette_8_should_be_palette_1 ... ok test palette_8_should_be_palette_2 ... ok test grayscale_alpha_16_should_be_grayscale_alpha_8 ... ok test rgb_16_should_be_palette_1 ... ok test palette_should_be_reduced_with_unused ... ok test palette_8_should_be_palette_4 ... ok test palette_should_be_reduced_with_both ... ok test rgb_16_should_be_grayscale_8 ... ok test palette_should_be_reduced_with_dupes ... ok test palette_8_should_be_palette_8 ... ok test rgb_16_should_be_grayscale_16 ... ok test rgb_8_should_be_palette_1 ... ok test rgb_16_should_be_palette_2 ... ok test rgb_8_should_be_palette_2 ... ok test rgb_16_should_be_palette_4 ... ok test rgb_8_should_be_grayscale_8 ... ok test rgb_16_should_be_palette_8 ... ok test rgba_16_reduce_alpha ... ok test rgb_16_should_be_rgb_16 ... ok test rgb_8_should_be_rgb_8 ... ok test rgb_16_should_be_rgb_8 ... ok test rgba_16_should_be_palette_1 ... ok test rgba_16_should_be_palette_2 ... ok test rgb_8_should_be_palette_4 ... ok test rgba_16_should_be_grayscale_8 ... ok test rgba_16_should_be_grayscale_16 ... ok test rgb_8_should_be_palette_8 ... ok test rgba_16_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_palette_4 ... ok test rgba_8_reduce_alpha ... ok test rgba_16_should_be_grayscale_alpha_16 ... ok test rgba_16_should_be_palette_8 ... ok test rgba_8_should_be_grayscale_8 ... ok test rgba_8_should_be_palette_1 ... ok test rgba_16_should_be_rgba_16 ... ok test rgba_8_should_be_palette_2 ... ok test rgba_8_should_be_grayscale_alpha_8 ... ok test rgba_16_should_be_rgb_8 ... ok test rgba_8_should_be_palette_4 ... ok test small_files ... ok test rgba_8_should_be_palette_8 ... ok test rgba_16_should_be_rgba_8 ... ok test rgba_16_should_be_rgb_16 ... ok test rgba_16_should_be_rgb_trns_16 ... ok test rgba_8_should_be_rgb_trns_8 ... ok test rgba_8_should_be_rgba_8 ... ok test rgba_8_should_be_rgb_8 ... ok test result: ok. 71 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 3.17s Running tests/regression.rs (target/debug/deps/regression-28125d48b08da477) running 31 tests test issue_140 ... ok test issue_171 ... ok test issue_113 ... ok test issue_175 ... ok test issue_182 ... ok test issue_129 ... ok test issue_42 ... ok test issue_159 ... ok test issue_426_01 ... ok test issue_52_01 ... ok test issue_52_02 ... ok test issue_52_03 ... ok test issue_52_04 ... ok test issue_52_05 ... ok test issue_52_06 ... ok test issue_56 ... ok test issue_58 ... ok test issue_29 ... ok test issue_60 ... ok test issue_80 ... ok test issue_82 ... ok test issue_89 ... ok test issue_59 ... ok test issue_92_filter_0 ... ok test issue_92_filter_5 ... ok test issue_426_02 ... ok test issue_195 ... 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 206.74s Running tests/strategies.rs (target/debug/deps/strategies-f6098055e89806b8) 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.73s 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-s390x.so.1 so:libgcc_s.so.1 >>> oxipng*: Package size: 1.2 MB >>> oxipng*: Compressing data... >>> oxipng*: Create checksum... >>> oxipng*: Create oxipng-8.0.0-r0.apk >>> oxipng: Build complete at Mon, 24 Apr 2023 07:42:00 +0000 elapsed time 0h 5m 37s >>> oxipng: Cleaning up srcdir >>> oxipng: Cleaning up pkgdir >>> oxipng: Uninstalling dependencies... (1/7) Purging .makedepends-oxipng (20230424.073624) (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: 370 MiB in 98 packages >>> oxipng: Updating the community/s390x repository index... >>> oxipng: Signing the index...