D: [iurt_root_command] chroot Building target platforms: x86_64 Building for target x86_64 Installing /home/pterjan/rpmbuild/SRPMS/rust-vec_map-0.8.2-1.mga10.src.rpm Executing(%mkbuilddir): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.eFGrA5 Executing(%prep): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.Ye38DJ + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + rm -rf vec_map-0.8.2 + /usr/lib/rpm/rpmuncompress -x /home/pterjan/rpmbuild/SOURCES/vec_map-0.8.2.crate + STATUS=0 + '[' 0 -ne 0 ']' + cd vec_map-0.8.2 + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w . + set -euo pipefail + /usr/bin/mkdir -p target/rpm + /usr/bin/ln -s rpm target/release + /usr/bin/rm -rf .cargo/ + /usr/bin/mkdir -p .cargo + cat + cat + /usr/bin/rm -f Cargo.lock + /usr/bin/rm -f Cargo.toml.orig + RPM_EC=0 ++ jobs -p + exit 0 Executing(%generate_buildrequires): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.0pee7W + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + cd vec_map-0.8.2 + /usr/bin/cargo2rpm --path Cargo.toml buildrequires --with-check + RPM_EC=0 ++ jobs -p + exit 0 Executing(%build): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.bDvDuV + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd vec_map-0.8.2 + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' + /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 'RUSTFLAGS=-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' /usr/bin/cargo build -j16 -Z avoid-dev-deps --profile rpm warning: no edition set: defaulting to the 2015 edition while the latest is 2024 Compiling vec_map v0.8.2 (/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2) Running `/usr/bin/rustc --crate-name vec_map --edition=2015 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C codegen-units=1 -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("eders", "serde"))' -C metadata=d50fbba2284e3926 -C extra-filename=-82626d373486f5e3 --out-dir /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: unnecessary parentheses around type --> src/lib.rs:1010:34 | 1010 | fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 1010 - fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } 1010 + fn next(&mut self) -> Option<&'a V> { self.iter.next().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1017:39 | 1017 | fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1017 - fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } 1017 + fn next_back(&mut self) -> Option<&'a V> { self.iter.next_back().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1023:34 | 1023 | fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1023 - fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } 1023 + fn next(&mut self) -> Option<&'a mut V> { self.iter_mut.next().map(|e| e.1) } | warning: `vec_map` (lib) generated 3 warnings (run `cargo fix --lib -p vec_map` to apply 3 suggestions) Finished `rpm` profile [optimized + debuginfo] target(s) in 0.26s + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.GXmPRc + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + '[' 1 -eq 1 ']' + '[' /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT '!=' / ']' + rm -rf /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT ++ dirname /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT + mkdir -p /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + mkdir /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd vec_map-0.8.2 + '[' 1 -eq 1 ']' + set -euo pipefail ++ /usr/bin/cargo2rpm --path Cargo.toml is-lib + '[' 1 -eq 1 ']' + '[' 1 -eq 1 ']' ++ /usr/bin/cargo2rpm --path Cargo.toml name + CRATE_NAME=vec_map ++ /usr/bin/cargo2rpm --path Cargo.toml version + CRATE_VERSION=0.8.2 + REG_DIR=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/cargo/registry/vec_map-0.8.2 + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/cargo/registry/vec_map-0.8.2 + /usr/bin/awk -i inplace -v INPLACE_SUFFIX=.deps '/^\[((.+\.)?((dev|build)-)?dependencies|features)/{f=1;next} /^\[/{f=0}; !f' Cargo.toml + /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 'RUSTFLAGS=-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' /usr/bin/cargo package -l + grep -w -E -v 'Cargo.(lock|toml.orig)' + xargs -d '\n' /usr/bin/cp --parents -a -t /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/cargo/registry/vec_map-0.8.2 warning: no (git) VCS found for `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2` + /usr/bin/mv Cargo.toml.deps Cargo.toml + /usr/bin/cp -a Cargo.toml /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/cargo/registry/vec_map-0.8.2/Cargo.toml + /usr/bin/rm -f /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/cargo/registry/vec_map-0.8.2/Cargo.toml.deps + echo '{"files":{},"package":""}' ++ /usr/bin/cargo2rpm --path Cargo.toml is-bin + '[' 0 -eq 1 ']' + /usr/lib/rpm/check-buildroot + '[' -n '' ']' + /usr/share/spec-helper/clean_files + '[' -n '' ']' + /usr/share/spec-helper/compress_files .xz + '[' -n '' ']' + /usr/share/spec-helper/relink_symlinks + '[' -n '' ']' + /usr/share/spec-helper/clean_perl + '[' -n '' ']' + /usr/share/spec-helper/lib_symlinks + '[' -n '' ']' + /usr/share/spec-helper/gprintify + '[' -n '' ']' + /usr/share/spec-helper/fix_mo + '[' -n '' ']' + /usr/share/spec-helper/fix_pamd + '[' -n '' ']' + /usr/share/spec-helper/remove_info_dir + '[' -n '' ']' + /usr/share/spec-helper/fix_eol + '[' -n '' ']' + /usr/share/spec-helper/check_desktop_files + '[' -n '' ']' + /usr/share/spec-helper/check_elf_files + /usr/lib/rpm/brp-strip /usr/bin/strip + /usr/lib/rpm/brp-strip-comment-note /usr/bin/strip /usr/bin/objdump + /usr/lib/rpm/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/check-rpaths + /usr/lib/rpm/brp-remove-la-files + /usr/lib/rpm/redhat/brp-mangle-shebangs + env -u SOURCE_DATE_EPOCH /usr/lib/rpm/redhat/brp-python-bytecompile '' 1 0 -j16 + /usr/lib/rpm/redhat/brp-python-hardlink Reading /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/SPECPARTS/rpm-debuginfo.specpart Executing(%check): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.nlc8U9 + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + CFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CFLAGS + CXXFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full' + export CXXFLAGS + FFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FFLAGS + FCFLAGS='-O2 -g -pipe -Wformat -Werror=format-security -Wp,-U_FORTIFY_SOURCE,-D_FORTIFY_SOURCE=3 -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -m64 -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection=full ' + export FCFLAGS + VALAFLAGS=-g + export VALAFLAGS + RUSTFLAGS='-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' + export RUSTFLAGS + LDFLAGS='-Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-z,now -Wl,-O1 -Wl,--build-id=sha1 -Wl,--enable-new-dtags -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' + export LDFLAGS + LT_SYS_LIBRARY_PATH=/usr/lib64: + export LT_SYS_LIBRARY_PATH + CC=gcc + export CC + CXX=g++ + export CXX + cd vec_map-0.8.2 + '[' 1 -eq 1 ']' + /usr/bin/env CARGO_HOME=.cargo RUSTC_BOOTSTRAP=1 'RUSTFLAGS=-Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn' /usr/bin/cargo test -j16 -Z avoid-dev-deps --profile rpm --no-fail-fast warning: no edition set: defaulting to the 2015 edition while the latest is 2024 warning: unnecessary parentheses around type --> src/lib.rs:1010:34 | 1010 | fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 1010 - fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } 1010 + fn next(&mut self) -> Option<&'a V> { self.iter.next().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1017:39 | 1017 | fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1017 - fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } 1017 + fn next_back(&mut self) -> Option<&'a V> { self.iter.next_back().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1023:34 | 1023 | fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1023 - fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } 1023 + fn next(&mut self) -> Option<&'a mut V> { self.iter_mut.next().map(|e| e.1) } | warning: `vec_map` (lib) generated 3 warnings (run `cargo fix --lib -p vec_map` to apply 3 suggestions) Compiling vec_map v0.8.2 (/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2) Running `/usr/bin/rustc --crate-name vec_map --edition=2015 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no -C codegen-units=1 -C debuginfo=2 --test --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("eders", "serde"))' -C metadata=9647d28bc1526e44 -C extra-filename=-f60d113db6e04082 --out-dir /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -Copt-level=3 -Cdebuginfo=2 -Ccodegen-units=1 -Cstrip=none --cap-lints=warn` warning: `vec_map` (lib test) generated 3 warnings (3 duplicates) Finished `rpm` profile [optimized + debuginfo] target(s) in 2.17s Running `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps/vec_map-f60d113db6e04082` running 28 tests test test::test_append ... ok test test::test_clear ... ok test test::test_clone ... ok test test::test_drain_iterator ... ok test test::test_entry ... ok test test::test_eq ... ok test test::test_extend_ref ... ok test test::test_from_iter ... ok test test::test_get_mut ... ok test test::test_hash ... ok test test::test_index ... ok test test::test_insert ... ok test test::test_index_nonexistent - should panic ... ok test test::test_iterator ... ok test test::test_iterator_size_hints ... ok test test::test_keys ... ok test test::test_len ... ok test test::test_lt ... ok test test::test_move_iter ... ok test test::test_mut_iterator ... ok test test::test_mut_rev_iterator ... ok test test::test_ord ... ok test test::test_remove ... ok test test::test_retain ... ok test test::test_rev_iterator ... ok test test::test_show ... ok test test::test_split_off ... ok test test::test_values ... ok test result: ok. 28 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s Doc-tests vec_map Running `/usr/bin/rustdoc --edition=2015 --crate-type lib --color auto --crate-name vec_map --test src/lib.rs --test-run-directory /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2 -L dependency=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps -L dependency=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps --extern vec_map=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps/libvec_map-82626d373486f5e3.rlib -C embed-bitcode=no --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("eders", "serde"))' --error-format human` warning: unnecessary parentheses around type --> src/lib.rs:1010:34 | 1010 | fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } | ^ ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 1010 - fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) } 1010 + fn next(&mut self) -> Option<&'a V> { self.iter.next().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1017:39 | 1017 | fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1017 - fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) } 1017 + fn next_back(&mut self) -> Option<&'a V> { self.iter.next_back().map(|e| e.1) } | warning: unnecessary parentheses around type --> src/lib.rs:1023:34 | 1023 | fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } | ^ ^ | help: remove these parentheses | 1023 - fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) } 1023 + fn next(&mut self) -> Option<&'a mut V> { self.iter_mut.next().map(|e| e.1) } | warning: 3 warnings emitted running 23 tests test src/lib.rs - VecMap::reserve_len_exact (line 179) ... FAILED test src/lib.rs - VecMap::shrink_to_fit (line 198) ... FAILED test src/lib.rs - VecMap::clear (line 452) ... FAILED test src/lib.rs - VecMap::get_mut (line 503) ... FAILED test src/lib.rs - VecMap::reserve_len (line 156) ... FAILED test src/lib.rs - VecMap::with_capacity (line 125) ... FAILED test src/lib.rs - VecMap::is_empty (line 436) ... FAILED test src/lib.rs - VecMap::len (line 420) ... FAILED test src/lib.rs - VecMap::get (line 466) ... FAILED test src/lib.rs - VecMap::insert (line 526) ... FAILED test src/lib.rs - VecMap::iter (line 238) ... FAILED test src/lib.rs - VecMap::capacity (line 138) ... FAILED test src/lib.rs - VecMap::remove (line 554) ... FAILED test src/lib.rs - VecMap::contains_key (line 486) ... FAILED test src/lib.rs - VecMap::new (line 114) ... FAILED test src/lib.rs - VecMap::retain (line 614) ... FAILED test src/lib.rs - VecMap::iter_mut (line 267) ... FAILED test src/lib.rs - VecMap::append (line 297) ... FAILED test src/lib.rs - VecMap::drain (line 394) ... FAILED test src/lib.rs - VecMap::into_iter (line 760) ... FAILED test src/lib.rs - VecMap::split_off (line 330) ... FAILED test src/lib.rs - VecMap (line 36) ... ok test src/lib.rs - VecMap::entry (line 578) ... ok failures: ---- src/lib.rs - VecMap::reserve_len_exact (line 179) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fb32efe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fb32e80c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fb32efd6863 - 3: 0x7fb32efe2802 - 4: 0x7fb32efe515a - 5: 0x7fb32efe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fb32bf6ebb8 - 7: 0x7fb32efe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fb32efe56ea - 9: 0x7fb32efe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fb32efe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fb32b92bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fb32b92c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fb32e9497cf - 14: 0x7fb32e995825 - ::codegen_crate 15: 0x7fb32eb980ff - ::codegen_and_build_linker 16: 0x7fb32ea5031f - 17: 0x7fb32ea4c809 - 18: 0x7fb32ea4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fb32ea5395c - 20: 0x7fb32efea99b - 21: 0x7fb32b0a1f6f - start_thread 22: 0x7fb32b11f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887607.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::shrink_to_fit (line 198) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fa84d3e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fa84cc0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fa84d3d6863 - 3: 0x7fa84d3e2802 - 4: 0x7fa84d3e515a - 5: 0x7fa84d3e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fa84a36ebb8 - 7: 0x7fa84d3e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fa84d3e56ea - 9: 0x7fa84d3e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fa84d3e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fa849d2bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fa849d2c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fa84cd497cf - 14: 0x7fa84cd95825 - ::codegen_crate 15: 0x7fa84cf980ff - ::codegen_and_build_linker 16: 0x7fa84ce5031f - 17: 0x7fa84ce4c809 - 18: 0x7fa84ce4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fa84ce5395c - 20: 0x7fa84d3ea99b - 21: 0x7fa8494a1f6f - start_thread 22: 0x7fa84951f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887603.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::clear (line 452) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f2ce4fe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f2ce480c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f2ce4fd6863 - 3: 0x7f2ce4fe2802 - 4: 0x7f2ce4fe515a - 5: 0x7f2ce4fe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f2ce1f6ebb8 - 7: 0x7f2ce4fe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f2ce4fe56ea - 9: 0x7f2ce4fe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f2ce4fe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f2ce192bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f2ce192c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f2ce49497cf - 14: 0x7f2ce4995825 - ::codegen_crate 15: 0x7f2ce4b980ff - ::codegen_and_build_linker 16: 0x7f2ce4a5031f - 17: 0x7f2ce4a4c809 - 18: 0x7f2ce4a4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f2ce4a5395c - 20: 0x7f2ce4fea99b - 21: 0x7f2ce10a1f6f - start_thread 22: 0x7f2ce111f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887574.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::get_mut (line 503) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f18123e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f1811c0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f18123d6863 - 3: 0x7f18123e2802 - 4: 0x7f18123e515a - 5: 0x7f18123e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f180f36ebb8 - 7: 0x7f18123e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f18123e56ea - 9: 0x7f18123e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f18123e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f180ed2bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f180ed2c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f1811d497cf - 14: 0x7f1811d95825 - ::codegen_crate 15: 0x7f1811f980ff - ::codegen_and_build_linker 16: 0x7f1811e5031f - 17: 0x7f1811e4c809 - 18: 0x7f1811e4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f1811e5395c - 20: 0x7f18123ea99b - 21: 0x7f180e4a1f6f - start_thread 22: 0x7f180e51f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887589.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::reserve_len (line 156) stdout ---- thread 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1867:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f382a7e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f382a00c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f382a7d6863 - 3: 0x7f382a7e2802 - 4: 0x7f382a7e515a - 5: 0x7f382a7e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f382776ebb8 - 7: 0x7f382a7e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f382a7e56ea - 9: 0x7f382a7e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f382a7e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f382712bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f382712c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f3828cf70ac - 14: 0x7f3828cf90cd - 15: 0x7f382a14b779 - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[a66fbef8d1d80c61]::result::Result>::{closure#0}, core[a66fbef8d1d80c61]::result::Result> 16: 0x7f382a152d56 - 17: 0x7f382a7ea99b - 18: 0x7f38268a1f6f - start_thread 19: 0x7f382691f5cc - __clone3 20: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887604.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f382a7e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f382a00c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f382a7d6863 - 3: 0x7f382a7e2802 - 4: 0x7f382a7e515a - 5: 0x7f382a7e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f382776ebb8 - 7: 0x7f382a7e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f3827e36862 - 9: 0x7f3827e31b76 - std[e3ab8da6de55786c]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f3827e3090b - std[e3ab8da6de55786c]::panicking::begin_panic:: 11: 0x7f3827eccb49 - 12: 0x7f3827eaa7ca - 13: 0x7f3827eaa62b - 14: 0x7f3827ecca40 - rustc_middle[a332ded7198d1001]::util::bug::bug_fmt 15: 0x7f382a198be5 - ::join_codegen 16: 0x7f382a3997e6 - ::link 17: 0x7f382a24c998 - 18: 0x7f382a24941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f382a25395c - 20: 0x7f382a7ea99b - 21: 0x7f38268a1f6f - start_thread 22: 0x7f382691f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887604.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::with_capacity (line 125) stdout ---- thread 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1867:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f58583e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f5857c0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f58583d6863 - 3: 0x7f58583e2802 - 4: 0x7f58583e515a - 5: 0x7f58583e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f585536ebb8 - 7: 0x7f58583e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f58583e56ea - 9: 0x7f58583e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f58583e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f5854d2bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f5854d2c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f58568f70ac - 14: 0x7f58568f90cd - 15: 0x7f5857d4b779 - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[a66fbef8d1d80c61]::result::Result>::{closure#0}, core[a66fbef8d1d80c61]::result::Result> 16: 0x7f5857d52d56 - 17: 0x7f58583ea99b - 18: 0x7f58544a1f6f - start_thread 19: 0x7f585451f5cc - __clone3 20: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887608.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f58583e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f5857c0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f58583d6863 - 3: 0x7f58583e2802 - 4: 0x7f58583e515a - 5: 0x7f58583e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f585536ebb8 - 7: 0x7f58583e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f5855a36862 - 9: 0x7f5855a31b76 - std[e3ab8da6de55786c]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f5855a3090b - std[e3ab8da6de55786c]::panicking::begin_panic:: 11: 0x7f5855accb49 - 12: 0x7f5855aaa7ca - 13: 0x7f5855aaa62b - 14: 0x7f5855acca40 - rustc_middle[a332ded7198d1001]::util::bug::bug_fmt 15: 0x7f5857d98be5 - ::join_codegen 16: 0x7f5857f997e6 - ::link 17: 0x7f5857e4c998 - 18: 0x7f5857e4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f5857e5395c - 20: 0x7f58583ea99b - 21: 0x7f58544a1f6f - start_thread 22: 0x7f585451f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887608.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::is_empty (line 436) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f1541be29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f154140c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f1541bd6863 - 3: 0x7f1541be2802 - 4: 0x7f1541be515a - 5: 0x7f1541be4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f153eb6ebb8 - 7: 0x7f1541be59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f1541be56ea - 9: 0x7f1541be2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f1541be538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f153e52bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f153e52c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f15415497cf - 14: 0x7f1541595825 - ::codegen_crate 15: 0x7f15417980ff - ::codegen_and_build_linker 16: 0x7f154165031f - 17: 0x7f154164c809 - 18: 0x7f154164941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f154165395c - 20: 0x7f1541bea99b - 21: 0x7f153dca1f6f - start_thread 22: 0x7f153dd1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887586.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::len (line 420) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f11669e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f116620c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f11669d6863 - 3: 0x7f11669e2802 - 4: 0x7f11669e515a - 5: 0x7f11669e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f116396ebb8 - 7: 0x7f11669e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f11669e56ea - 9: 0x7f11669e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f11669e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f116332bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f116332c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f1166349361 - 14: 0x7f1166395825 - ::codegen_crate 15: 0x7f11665980ff - ::codegen_and_build_linker 16: 0x7f116645031f - 17: 0x7f116644c809 - 18: 0x7f116644941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f116645395c - 20: 0x7f11669ea99b - 21: 0x7f1162aa1f6f - start_thread 22: 0x7f1162b1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887597.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::get (line 466) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f20acde29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f20ac60c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f20acdd6863 - 3: 0x7f20acde2802 - 4: 0x7f20acde515a - 5: 0x7f20acde4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f20a9d6ebb8 - 7: 0x7f20acde59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f20acde56ea - 9: 0x7f20acde2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f20acde538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f20a972bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f20a972c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f20ac749361 - 14: 0x7f20ac795825 - ::codegen_crate 15: 0x7f20ac9980ff - ::codegen_and_build_linker 16: 0x7f20ac85031f - 17: 0x7f20ac84c809 - 18: 0x7f20ac84941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f20ac85395c - 20: 0x7f20acdea99b - 21: 0x7f20a8ea1f6f - start_thread 22: 0x7f20a8f1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887592.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::insert (line 526) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f611bbe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f611b40c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f611bbd6863 - 3: 0x7f611bbe2802 - 4: 0x7f611bbe515a - 5: 0x7f611bbe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f6118b6ebb8 - 7: 0x7f611bbe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f611bbe56ea - 9: 0x7f611bbe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f611bbe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f611852bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f611852c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f611b549361 - 14: 0x7f611b595825 - ::codegen_crate 15: 0x7f611b7980ff - ::codegen_and_build_linker 16: 0x7f611b65031f - 17: 0x7f611b64c809 - 18: 0x7f611b64941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f611b65395c - 20: 0x7f611bbea99b - 21: 0x7f6117ca1f6f - start_thread 22: 0x7f6117d1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887593.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::iter (line 238) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fcdeefe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fcdee80c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fcdeefd6863 - 3: 0x7fcdeefe2802 - 4: 0x7fcdeefe515a - 5: 0x7fcdeefe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fcdebf6ebb8 - 7: 0x7fcdeefe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fcdeefe56ea - 9: 0x7fcdeefe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fcdeefe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fcdeb92bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fcdeb92c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fcdee949361 - 14: 0x7fcdee995825 - ::codegen_crate 15: 0x7fcdeeb980ff - ::codegen_and_build_linker 16: 0x7fcdeea5031f - 17: 0x7fcdeea4c809 - 18: 0x7fcdeea4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fcdeea5395c - 20: 0x7fcdeefea99b - 21: 0x7fcdeb0a1f6f - start_thread 22: 0x7fcdeb11f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887591.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::capacity (line 138) stdout ---- thread 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1867:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fd348fe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fd34880c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fd348fd6863 - 3: 0x7fd348fe2802 - 4: 0x7fd348fe515a - 5: 0x7fd348fe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fd345f6ebb8 - 7: 0x7fd348fe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fd348fe56ea - 9: 0x7fd348fe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fd348fe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fd34592bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fd34592c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fd3474f70ac - 14: 0x7fd3474f90cd - 15: 0x7fd34894b779 - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[a66fbef8d1d80c61]::result::Result>::{closure#0}, core[a66fbef8d1d80c61]::result::Result> 16: 0x7fd348952d56 - 17: 0x7fd348fea99b - 18: 0x7fd3450a1f6f - start_thread 19: 0x7fd34511f5cc - __clone3 20: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887576.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7fd348fe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fd34880c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fd348fd6863 - 3: 0x7fd348fe2802 - 4: 0x7fd348fe515a - 5: 0x7fd348fe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fd345f6ebb8 - 7: 0x7fd348fe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fd346636862 - 9: 0x7fd346631b76 - std[e3ab8da6de55786c]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7fd34663090b - std[e3ab8da6de55786c]::panicking::begin_panic:: 11: 0x7fd3466ccb49 - 12: 0x7fd3466aa7ca - 13: 0x7fd3466aa62b - 14: 0x7fd3466cca40 - rustc_middle[a332ded7198d1001]::util::bug::bug_fmt 15: 0x7fd348998be5 - ::join_codegen 16: 0x7fd348b997e6 - ::link 17: 0x7fd348a4c998 - 18: 0x7fd348a4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fd348a5395c - 20: 0x7fd348fea99b - 21: 0x7fd3450a1f6f - start_thread 22: 0x7fd34511f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887576.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::remove (line 554) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f0c2f1e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f0c2ea0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f0c2f1d6863 - 3: 0x7f0c2f1e2802 - 4: 0x7f0c2f1e515a - 5: 0x7f0c2f1e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f0c2c16ebb8 - 7: 0x7f0c2f1e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f0c2f1e56ea - 9: 0x7f0c2f1e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f0c2f1e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f0c2bb2bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f0c2bb2c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f0c2eb49361 - 14: 0x7f0c2eb95825 - ::codegen_crate 15: 0x7f0c2ed980ff - ::codegen_and_build_linker 16: 0x7f0c2ec5031f - 17: 0x7f0c2ec4c809 - 18: 0x7f0c2ec4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f0c2ec5395c - 20: 0x7f0c2f1ea99b - 21: 0x7f0c2b2a1f6f - start_thread 22: 0x7f0c2b31f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887606.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::contains_key (line 486) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f5f2fde29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f5f2f60c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f5f2fdd6863 - 3: 0x7f5f2fde2802 - 4: 0x7f5f2fde515a - 5: 0x7f5f2fde4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f5f2cd6ebb8 - 7: 0x7f5f2fde59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f5f2fde56ea - 9: 0x7f5f2fde2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f5f2fde538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f5f2c72bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f5f2c72c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f5f2f749361 - 14: 0x7f5f2f795825 - ::codegen_crate 15: 0x7f5f2f9980ff - ::codegen_and_build_linker 16: 0x7f5f2f85031f - 17: 0x7f5f2f84c809 - 18: 0x7f5f2f84941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f5f2f85395c - 20: 0x7f5f2fdea99b - 21: 0x7f5f2bea1f6f - start_thread 22: 0x7f5f2bf1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887577.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::new (line 114) stdout ---- thread 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1867:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f7e393e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f7e38c0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f7e393d6863 - 3: 0x7f7e393e2802 - 4: 0x7f7e393e515a - 5: 0x7f7e393e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f7e3636ebb8 - 7: 0x7f7e393e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f7e393e56ea - 9: 0x7f7e393e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f7e393e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f7e35d2bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f7e35d2c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f7e378f70ac - 14: 0x7f7e378f90cd - 15: 0x7f7e38d4b779 - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[a66fbef8d1d80c61]::result::Result>::{closure#0}, core[a66fbef8d1d80c61]::result::Result> 16: 0x7f7e38d52d56 - 17: 0x7f7e393ea99b - 18: 0x7f7e354a1f6f - start_thread 19: 0x7f7e3551f5cc - __clone3 20: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887596.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f7e393e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f7e38c0c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f7e393d6863 - 3: 0x7f7e393e2802 - 4: 0x7f7e393e515a - 5: 0x7f7e393e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f7e3636ebb8 - 7: 0x7f7e393e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f7e36a36862 - 9: 0x7f7e36a31b76 - std[e3ab8da6de55786c]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f7e36a3090b - std[e3ab8da6de55786c]::panicking::begin_panic:: 11: 0x7f7e36accb49 - 12: 0x7f7e36aaa7ca - 13: 0x7f7e36aaa62b - 14: 0x7f7e36acca40 - rustc_middle[a332ded7198d1001]::util::bug::bug_fmt 15: 0x7f7e38d98be5 - ::join_codegen 16: 0x7f7e38f997e6 - ::link 17: 0x7f7e38e4c998 - 18: 0x7f7e38e4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f7e38e5395c - 20: 0x7f7e393ea99b - 21: 0x7f7e354a1f6f - start_thread 22: 0x7f7e3551f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887596.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::retain (line 614) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fef9dde29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fef9d60c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fef9ddd6863 - 3: 0x7fef9dde2802 - 4: 0x7fef9dde515a - 5: 0x7fef9dde4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fef9ad6ebb8 - 7: 0x7fef9dde59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fef9dde56ea - 9: 0x7fef9dde2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fef9dde538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fef9a72bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fef9a72c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fef9d749361 - 14: 0x7fef9d795825 - ::codegen_crate 15: 0x7fef9d9980ff - ::codegen_and_build_linker 16: 0x7fef9d85031f - 17: 0x7fef9d84c809 - 18: 0x7fef9d84941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fef9d85395c - 20: 0x7fef9ddea99b - 21: 0x7fef99ea1f6f - start_thread 22: 0x7fef99f1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887602.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::iter_mut (line 267) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fcd38fe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fcd3880c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fcd38fd6863 - 3: 0x7fcd38fe2802 - 4: 0x7fcd38fe515a - 5: 0x7fcd38fe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fcd35f6ebb8 - 7: 0x7fcd38fe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fcd38fe56ea - 9: 0x7fcd38fe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fcd38fe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fcd3592bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fcd3592c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fcd389497cf - 14: 0x7fcd38995825 - ::codegen_crate 15: 0x7fcd38b980ff - ::codegen_and_build_linker 16: 0x7fcd38a5031f - 17: 0x7fcd38a4c809 - 18: 0x7fcd38a4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fcd38a5395c - 20: 0x7fcd38fea99b - 21: 0x7fcd350a1f6f - start_thread 22: 0x7fcd3511f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887588.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::append (line 297) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fae95fe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7fae9580c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7fae95fd6863 - 3: 0x7fae95fe2802 - 4: 0x7fae95fe515a - 5: 0x7fae95fe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7fae92f6ebb8 - 7: 0x7fae95fe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7fae95fe56ea - 9: 0x7fae95fe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7fae95fe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7fae9292bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7fae9292c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7fae959497cf - 14: 0x7fae95995825 - ::codegen_crate 15: 0x7fae95b980ff - ::codegen_and_build_linker 16: 0x7fae95a5031f - 17: 0x7fae95a4c809 - 18: 0x7fae95a4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fae95a5395c - 20: 0x7fae95fea99b - 21: 0x7fae920a1f6f - start_thread 22: 0x7fae9211f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887572.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::drain (line 394) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1173:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7ff4f7fe29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7ff4f780c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7ff4f7fd6863 - 3: 0x7ff4f7fe2802 - 4: 0x7ff4f7fe515a - 5: 0x7ff4f7fe4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7ff4f4f6ebb8 - 7: 0x7ff4f7fe59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7ff4f7fe56ea - 9: 0x7ff4f7fe2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7ff4f7fe538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7ff4f492bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7ff4f492c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7ff4f7949361 - 14: 0x7ff4f7995825 - ::codegen_crate 15: 0x7ff4f7b980ff - ::codegen_and_build_linker 16: 0x7ff4f7a5031f - 17: 0x7ff4f7a4c809 - 18: 0x7ff4f7a4941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7ff4f7a5395c - 20: 0x7ff4f7fea99b - 21: 0x7ff4f40a1f6f - start_thread 22: 0x7ff4f411f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887581.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::into_iter (line 760) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1736:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f70f2de29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f70f260c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f70f2dd6863 - 3: 0x7f70f2de2802 - 4: 0x7f70f2de515a - 5: 0x7f70f2de4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f70efd6ebb8 - 7: 0x7f70f2de59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f70f2de56ea - 9: 0x7f70f2de2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f70f2de538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f70ef72bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f70ef72c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f70f27497cf - 14: 0x7f70f2795825 - ::codegen_crate 15: 0x7f70f29980ff - ::codegen_and_build_linker 16: 0x7f70f285031f - 17: 0x7f70f284c809 - 18: 0x7f70f284941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f70f285395c - 20: 0x7f70f2dea99b - 21: 0x7f70eeea1f6f - start_thread 22: 0x7f70eef1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887573.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. ---- src/lib.rs - VecMap::split_off (line 330) stdout ---- thread 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1867:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f4ef59e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f4ef520c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f4ef59d6863 - 3: 0x7f4ef59e2802 - 4: 0x7f4ef59e515a - 5: 0x7f4ef59e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f4ef296ebb8 - 7: 0x7f4ef59e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f4ef59e56ea - 9: 0x7f4ef59e2e69 - std::sys::backtrace::__rust_end_short_backtrace::h6b64eaee40f9b43f 10: 0x7f4ef59e538d - __rustc[8f319da50fe92751]::rust_begin_unwind 11: 0x7f4ef232bca0 - core::panicking::panic_fmt::hea640e78c6f589cd 12: 0x7f4ef232c216 - core::result::unwrap_failed::h923c9a456a8684bc 13: 0x7f4ef3ef70ac - 14: 0x7f4ef3ef90cd - 15: 0x7f4ef534b779 - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[a66fbef8d1d80c61]::result::Result>::{closure#0}, core[a66fbef8d1d80c61]::result::Result> 16: 0x7f4ef5352d56 - 17: 0x7f4ef59ea99b - 18: 0x7f4ef1aa1f6f - start_thread 19: 0x7f4ef1b1f5cc - __clone3 20: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887609.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: /home/iurt/rpmbuild/BUILD/rust-1.87.0-build/rustc-1.87.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2070:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f4ef59e29a3 - ::fmt::h7ff8fa4847a6a49e 1: 0x7f4ef520c373 - core::fmt::write::h3c0ad9b7cbfa7891 2: 0x7f4ef59d6863 - 3: 0x7f4ef59e2802 - 4: 0x7f4ef59e515a - 5: 0x7f4ef59e4cdf - std::panicking::default_hook::hee2bd3505c9da8c2 6: 0x7f4ef296ebb8 - 7: 0x7f4ef59e59f3 - std::panicking::rust_panic_with_hook::hb53cb8e5d8b9afde 8: 0x7f4ef3036862 - 9: 0x7f4ef3031b76 - std[e3ab8da6de55786c]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f4ef303090b - std[e3ab8da6de55786c]::panicking::begin_panic:: 11: 0x7f4ef30ccb49 - 12: 0x7f4ef30aa7ca - 13: 0x7f4ef30aa62b - 14: 0x7f4ef30cca40 - rustc_middle[a332ded7198d1001]::util::bug::bug_fmt 15: 0x7f4ef5398be5 - ::join_codegen 16: 0x7f4ef55997e6 - ::link 17: 0x7f4ef544c998 - 18: 0x7f4ef544941b - std[e3ab8da6de55786c]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f4ef545395c - 20: 0x7f4ef59ea99b - 21: 0x7f4ef1aa1f6f - start_thread 22: 0x7f4ef1b1f5cc - __clone3 23: 0x0 - error: the compiler unexpectedly panicked. this is a bug. note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-compiler&template=ice.md note: please make sure that you have updated to the latest nightly note: please attach the file at `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/rustc-ice-2025-06-23T20_20_30-887609.txt` to your bug report note: compiler flags: --crate-type bin query stack during panic: end of query stack Couldn't compile the test. failures: src/lib.rs - VecMap::into_iter (line 760) src/lib.rs - VecMap::append (line 297) src/lib.rs - VecMap::capacity (line 138) src/lib.rs - VecMap::clear (line 452) src/lib.rs - VecMap::contains_key (line 486) src/lib.rs - VecMap::drain (line 394) src/lib.rs - VecMap::get (line 466) src/lib.rs - VecMap::get_mut (line 503) src/lib.rs - VecMap::insert (line 526) src/lib.rs - VecMap::is_empty (line 436) src/lib.rs - VecMap::iter (line 238) src/lib.rs - VecMap::iter_mut (line 267) src/lib.rs - VecMap::len (line 420) src/lib.rs - VecMap::new (line 114) src/lib.rs - VecMap::remove (line 554) src/lib.rs - VecMap::reserve_len (line 156) src/lib.rs - VecMap::reserve_len_exact (line 179) src/lib.rs - VecMap::retain (line 614) src/lib.rs - VecMap::shrink_to_fit (line 198) src/lib.rs - VecMap::split_off (line 330) src/lib.rs - VecMap::with_capacity (line 125) test result: FAILED. 2 passed; 21 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.19s error: doctest failed, to rerun pass `--doc` error: 1 target failed: `--doc` error: Bad exit status from /home/pterjan/rpmbuild/tmp/rpm-tmp.nlc8U9 (%check) RPM build errors: Bad exit status from /home/pterjan/rpmbuild/tmp/rpm-tmp.nlc8U9 (%check) I: [iurt_root_command] ERROR: chroot