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.EZqYJx Executing(%prep): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.3kMYpt + 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.bfwyhW + 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.ZAWhV4 + 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=e02c2670d2c091ca -C extra-filename=-f83e1ec479066393 --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.28s + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.DvDRjp + 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.tsOVA2 + 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=64bdcdbc2bb56f79 -C extra-filename=-5619f705f777667e --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.75s Running `/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/target/rpm/deps/vec_map-5619f705f777667e` running 28 tests test test::test_clear ... ok test test::test_append ... ok test test::test_clone ... ok test test::test_entry ... ok test test::test_eq ... ok test test::test_drain_iterator ... ok test test::test_extend_ref ... ok test test::test_from_iter ... ok test test::test_hash ... ok test test::test_index ... ok test test::test_get_mut ... ok test test::test_index_nonexistent - should panic ... ok test test::test_insert ... ok test test::test_iterator ... ok test test::test_iterator_size_hints ... ok test test::test_len ... ok test test::test_keys ... ok test test::test_lt ... ok test test::test_mut_iterator ... ok test test::test_mut_rev_iterator ... ok test test::test_move_iter ... ok test test::test_ord ... ok test test::test_remove ... ok test test::test_rev_iterator ... ok test test::test_retain ... ok test test::test_split_off ... ok test test::test_show ... 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-f83e1ec479066393.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::len (line 420) ... FAILED test src/lib.rs - VecMap::entry (line 578) ... FAILED test src/lib.rs - VecMap::clear (line 452) ... FAILED test src/lib.rs - VecMap::is_empty (line 436) ... FAILED test src/lib.rs - VecMap::reserve_len_exact (line 179) ... FAILED test src/lib.rs - VecMap::iter (line 238) ... FAILED test src/lib.rs - VecMap::contains_key (line 486) ... FAILED test src/lib.rs - VecMap::remove (line 554) ... FAILED test src/lib.rs - VecMap::with_capacity (line 125) ... FAILED test src/lib.rs - VecMap::capacity (line 138) ... FAILED test src/lib.rs - VecMap::new (line 114) ... FAILED test src/lib.rs - VecMap::retain (line 614) ... FAILED test src/lib.rs - VecMap::into_iter (line 760) ... FAILED test src/lib.rs - VecMap::get (line 466) ... FAILED test src/lib.rs - VecMap::split_off (line 330) ... FAILED test src/lib.rs - VecMap::get_mut (line 503) ... FAILED test src/lib.rs - VecMap::iter_mut (line 267) ... FAILED test src/lib.rs - VecMap::drain (line 394) ... FAILED test src/lib.rs - VecMap::insert (line 526) ... FAILED test src/lib.rs - VecMap::reserve_len (line 156) ... ok test src/lib.rs - VecMap::append (line 297) ... ok test src/lib.rs - VecMap::shrink_to_fit (line 198) ... ok test src/lib.rs - VecMap (line 36) ... ok failures: ---- src/lib.rs - VecMap::len (line 420) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1163:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f293ad46230 - ::fmt::h9076d363463cef76 1: 0x7f293a6a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f293ad39b53 - 3: 0x7f293ad46092 - 4: 0x7f293ad486b2 - 5: 0x7f293ad4853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f29380d9d92 - 7: 0x7f293ad49213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f293ad48f0a - 9: 0x7f293ad46709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f293ad48bad - rust_begin_unwind 11: 0x7f2937ae6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f2937ae71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f293a7ed63a - 14: 0x7f293a7e62f6 - 15: 0x7f293a830882 - ::codegen_crate 16: 0x7f293aa05b34 - ::codegen_and_build_linker 17: 0x7f293a8e7c64 - 18: 0x7f293a8e10c7 - 19: 0x7f293a8dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7f293a8eaff1 - 21: 0x7f293ad5584b - 22: 0x7f29372a1f6f - start_thread 23: 0x7f293731f5cc - __clone3 24: 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-04-24T09_07_17-3751603.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::entry (line 578) stdout ---- thread 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1724:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f119d946230 - ::fmt::h9076d363463cef76 1: 0x7f119d2a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f119d939b53 - 3: 0x7f119d946092 - 4: 0x7f119d9486b2 - 5: 0x7f119d94853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f119acd9d92 - 7: 0x7f119d949213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f119d948f0a - 9: 0x7f119d946709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f119d948bad - rust_begin_unwind 11: 0x7f119a6e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f119a6e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f119d3edad8 - 14: 0x7f119d3e62f6 - 15: 0x7f119d430882 - ::codegen_crate 16: 0x7f119d605b34 - ::codegen_and_build_linker 17: 0x7f119d4e7c64 - 18: 0x7f119d4e10c7 - 19: 0x7f119d4dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7f119d4eaff1 - 21: 0x7f119d95584b - 22: 0x7f1199ea1f6f - start_thread 23: 0x7f1199f1f5cc - __clone3 24: 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-04-24T09_07_17-3751586.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1163:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7ff681f46230 - ::fmt::h9076d363463cef76 1: 0x7ff6818a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7ff681f39b53 - 3: 0x7ff681f46092 - 4: 0x7ff681f486b2 - 5: 0x7ff681f4853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7ff67f2d9d92 - 7: 0x7ff681f49213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7ff681f48f0a - 9: 0x7ff681f46709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7ff681f48bad - rust_begin_unwind 11: 0x7ff67ece6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7ff67ece71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7ff6819ed63a - 14: 0x7ff6819e62f6 - 15: 0x7ff681a30882 - ::codegen_crate 16: 0x7ff681c05b34 - ::codegen_and_build_linker 17: 0x7ff681ae7c64 - 18: 0x7ff681ae10c7 - 19: 0x7ff681adcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7ff681aeaff1 - 21: 0x7ff681f5584b - 22: 0x7ff67e4a1f6f - start_thread 23: 0x7ff67e51f5cc - __clone3 24: 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-04-24T09_07_17-3751585.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1724:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f6a87546230 - ::fmt::h9076d363463cef76 1: 0x7f6a86ea1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f6a87539b53 - 3: 0x7f6a87546092 - 4: 0x7f6a875486b2 - 5: 0x7f6a8754853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f6a848d9d92 - 7: 0x7f6a87549213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f6a87548f0a - 9: 0x7f6a87546709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f6a87548bad - rust_begin_unwind 11: 0x7f6a842e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f6a842e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f6a86fedad8 - 14: 0x7f6a86fe62f6 - 15: 0x7f6a87030882 - ::codegen_crate 16: 0x7f6a87205b34 - ::codegen_and_build_linker 17: 0x7f6a870e7c64 - 18: 0x7f6a870e10c7 - 19: 0x7f6a870dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7f6a870eaff1 - 21: 0x7f6a8755584b - 22: 0x7f6a88543f6f - start_thread 23: 0x7f6a885c15cc - __clone3 24: 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-04-24T09_07_17-3751601.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_exact (line 179) stdout ---- thread 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1855:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fe871746230 - ::fmt::h9076d363463cef76 1: 0x7fe8710a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fe871739b53 - 3: 0x7fe871746092 - 4: 0x7fe8717486b2 - 5: 0x7fe87174853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fe86ead9d92 - 7: 0x7fe871749213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fe871748f0a - 9: 0x7fe871746709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7fe871748bad - rust_begin_unwind 11: 0x7fe86e4e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7fe86e4e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7fe8711eb802 - 14: 0x7fe86ff8b588 - 15: 0x7fe8711efcb7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[c8515a07a195242f]::result::Result>::{closure#0}, core[c8515a07a195242f]::result::Result> 16: 0x7fe8711f3a49 - 17: 0x7fe87175584b - 18: 0x7fe86dca1f6f - start_thread 19: 0x7fe86dd1f5cc - __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-04-24T09_07_17-3751616.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7fe871746230 - ::fmt::h9076d363463cef76 1: 0x7fe8710a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fe871739b53 - 3: 0x7fe871746092 - 4: 0x7fe8717486b2 - 5: 0x7fe87174853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fe86ead9d92 - 7: 0x7fe871749213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fe86f151942 - 9: 0x7fe86f149046 - std[e704c5c9c6f67171]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7fe86f14903f - std[e704c5c9c6f67171]::panicking::begin_panic:: 11: 0x7fe86f1d8bfe - 12: 0x7fe86f1bf78a - 13: 0x7fe86f1bf3ab - 14: 0x7fe86f1d8b40 - rustc_middle[16217dabf740581e]::util::bug::bug_fmt 15: 0x7fe871230eee - ::join_codegen 16: 0x7fe871406b56 - ::link 17: 0x7fe8712e124b - 18: 0x7fe8712dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fe8712eaff1 - 20: 0x7fe87175584b - 21: 0x7fe86dca1f6f - start_thread 22: 0x7fe86dd1f5cc - __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-04-24T09_07_17-3751616.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1724:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f71f1146230 - ::fmt::h9076d363463cef76 1: 0x7f71f0aa1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f71f1139b53 - 3: 0x7f71f1146092 - 4: 0x7f71f11486b2 - 5: 0x7f71f114853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f71ee4d9d92 - 7: 0x7f71f1149213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f71f1148f0a - 9: 0x7f71f1146709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f71f1148bad - rust_begin_unwind 11: 0x7f71edee6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f71edee71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f71f0bedad8 - 14: 0x7f71f0be62f6 - 15: 0x7f71f0c30882 - ::codegen_crate 16: 0x7f71f0e05b34 - ::codegen_and_build_linker 17: 0x7f71f0ce7c64 - 18: 0x7f71f0ce10c7 - 19: 0x7f71f0cdcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7f71f0ceaff1 - 21: 0x7f71f115584b - 22: 0x7f71ed6a1f6f - start_thread 23: 0x7f71ed71f5cc - __clone3 24: 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-04-24T09_07_17-3751600.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1724:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f99fe946230 - ::fmt::h9076d363463cef76 1: 0x7f99fe2a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f99fe939b53 - 3: 0x7f99fe946092 - 4: 0x7f99fe9486b2 - 5: 0x7f99fe94853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f99fbcd9d92 - 7: 0x7f99fe949213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f99fe948f0a - 9: 0x7f99fe946709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f99fe948bad - rust_begin_unwind 11: 0x7f99fb6e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f99fb6e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f99fe3edad8 - 14: 0x7f99fe3e62f6 - 15: 0x7f99fe430882 - ::codegen_crate 16: 0x7f99fe605b34 - ::codegen_and_build_linker 17: 0x7f99fe4e7c64 - 18: 0x7f99fe4e10c7 - 19: 0x7f99fe4dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7f99fe4eaff1 - 21: 0x7f99fe95584b - 22: 0x7f99faea1f6f - start_thread 23: 0x7f99faf1f5cc - __clone3 24: 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-04-24T09_07_17-3751580.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1163:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fe910f46230 - ::fmt::h9076d363463cef76 1: 0x7fe9108a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fe910f39b53 - 3: 0x7fe910f46092 - 4: 0x7fe910f486b2 - 5: 0x7fe910f4853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fe90e2d9d92 - 7: 0x7fe910f49213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fe910f48f0a - 9: 0x7fe910f46709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7fe910f48bad - rust_begin_unwind 11: 0x7fe90dce6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7fe90dce71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7fe9109ed63a - 14: 0x7fe9109e62f6 - 15: 0x7fe910a30882 - ::codegen_crate 16: 0x7fe910c05b34 - ::codegen_and_build_linker 17: 0x7fe910ae7c64 - 18: 0x7fe910ae10c7 - 19: 0x7fe910adcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7fe910aeaff1 - 21: 0x7fe910f5584b - 22: 0x7fe90d4a1f6f - start_thread 23: 0x7fe90d51f5cc - __clone3 24: 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-04-24T09_07_17-3751608.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1855:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fbcb3146230 - ::fmt::h9076d363463cef76 1: 0x7fbcb2aa1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fbcb3139b53 - 3: 0x7fbcb3146092 - 4: 0x7fbcb31486b2 - 5: 0x7fbcb314853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fbcb04d9d92 - 7: 0x7fbcb3149213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fbcb3148f0a - 9: 0x7fbcb3146709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7fbcb3148bad - rust_begin_unwind 11: 0x7fbcafee6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7fbcafee71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7fbcb2beb802 - 14: 0x7fbcb198b588 - 15: 0x7fbcb2befcb7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[c8515a07a195242f]::result::Result>::{closure#0}, core[c8515a07a195242f]::result::Result> 16: 0x7fbcb2bf3a49 - 17: 0x7fbcb315584b - 18: 0x7fbcaf6a1f6f - start_thread 19: 0x7fbcaf71f5cc - __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-04-24T09_07_17-3751617.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7fbcb3146230 - ::fmt::h9076d363463cef76 1: 0x7fbcb2aa1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fbcb3139b53 - 3: 0x7fbcb3146092 - 4: 0x7fbcb31486b2 - 5: 0x7fbcb314853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fbcb04d9d92 - 7: 0x7fbcb3149213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fbcb0b51942 - 9: 0x7fbcb0b49046 - std[e704c5c9c6f67171]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7fbcb0b4903f - std[e704c5c9c6f67171]::panicking::begin_panic:: 11: 0x7fbcb0bd8bfe - 12: 0x7fbcb0bbf78a - 13: 0x7fbcb0bbf3ab - 14: 0x7fbcb0bd8b40 - rustc_middle[16217dabf740581e]::util::bug::bug_fmt 15: 0x7fbcb2c30eee - ::join_codegen 16: 0x7fbcb2e06b56 - ::link 17: 0x7fbcb2ce124b - 18: 0x7fbcb2cdcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fbcb2ceaff1 - 20: 0x7fbcb315584b - 21: 0x7fbcaf6a1f6f - start_thread 22: 0x7fbcaf71f5cc - __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-04-24T09_07_17-3751617.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1855:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f0d23346230 - ::fmt::h9076d363463cef76 1: 0x7f0d22ca1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f0d23339b53 - 3: 0x7f0d23346092 - 4: 0x7f0d233486b2 - 5: 0x7f0d2334853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f0d206d9d92 - 7: 0x7f0d23349213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f0d23348f0a - 9: 0x7f0d23346709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f0d23348bad - rust_begin_unwind 11: 0x7f0d200e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f0d200e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f0d22deb802 - 14: 0x7f0d21b8b588 - 15: 0x7f0d22defcb7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[c8515a07a195242f]::result::Result>::{closure#0}, core[c8515a07a195242f]::result::Result> 16: 0x7f0d22df3a49 - 17: 0x7f0d2335584b - 18: 0x7f0d1f8a1f6f - start_thread 19: 0x7f0d1f91f5cc - __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-04-24T09_07_17-3751583.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f0d23346230 - ::fmt::h9076d363463cef76 1: 0x7f0d22ca1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f0d23339b53 - 3: 0x7f0d23346092 - 4: 0x7f0d233486b2 - 5: 0x7f0d2334853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f0d206d9d92 - 7: 0x7f0d23349213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f0d20d51942 - 9: 0x7f0d20d49046 - std[e704c5c9c6f67171]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f0d20d4903f - std[e704c5c9c6f67171]::panicking::begin_panic:: 11: 0x7f0d20dd8bfe - 12: 0x7f0d20dbf78a - 13: 0x7f0d20dbf3ab - 14: 0x7f0d20dd8b40 - rustc_middle[16217dabf740581e]::util::bug::bug_fmt 15: 0x7f0d22e30eee - ::join_codegen 16: 0x7f0d23006b56 - ::link 17: 0x7f0d22ee124b - 18: 0x7f0d22edcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f0d22eeaff1 - 20: 0x7f0d2335584b - 21: 0x7f0d1f8a1f6f - start_thread 22: 0x7f0d1f91f5cc - __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-04-24T09_07_17-3751583.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1855:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f8b53346230 - ::fmt::h9076d363463cef76 1: 0x7f8b52ca1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f8b53339b53 - 3: 0x7f8b53346092 - 4: 0x7f8b533486b2 - 5: 0x7f8b5334853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f8b506d9d92 - 7: 0x7f8b53349213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f8b53348f0a - 9: 0x7f8b53346709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f8b53348bad - rust_begin_unwind 11: 0x7f8b500e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f8b500e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f8b52deb802 - 14: 0x7f8b51b8b588 - 15: 0x7f8b52defcb7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[c8515a07a195242f]::result::Result>::{closure#0}, core[c8515a07a195242f]::result::Result> 16: 0x7f8b52df3a49 - 17: 0x7f8b5335584b - 18: 0x7f8b4f8a1f6f - start_thread 19: 0x7f8b4f91f5cc - __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-04-24T09_07_17-3751604.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f8b53346230 - ::fmt::h9076d363463cef76 1: 0x7f8b52ca1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f8b53339b53 - 3: 0x7f8b53346092 - 4: 0x7f8b533486b2 - 5: 0x7f8b5334853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f8b506d9d92 - 7: 0x7f8b53349213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f8b50d51942 - 9: 0x7f8b50d49046 - std[e704c5c9c6f67171]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f8b50d4903f - std[e704c5c9c6f67171]::panicking::begin_panic:: 11: 0x7f8b50dd8bfe - 12: 0x7f8b50dbf78a - 13: 0x7f8b50dbf3ab - 14: 0x7f8b50dd8b40 - rustc_middle[16217dabf740581e]::util::bug::bug_fmt 15: 0x7f8b52e30eee - ::join_codegen 16: 0x7f8b53006b56 - ::link 17: 0x7f8b52ee124b - 18: 0x7f8b52edcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f8b52eeaff1 - 20: 0x7f8b5335584b - 21: 0x7f8b4f8a1f6f - start_thread 22: 0x7f8b4f91f5cc - __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-04-24T09_07_17-3751604.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1724:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f53b3d46230 - ::fmt::h9076d363463cef76 1: 0x7f53b36a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f53b3d39b53 - 3: 0x7f53b3d46092 - 4: 0x7f53b3d486b2 - 5: 0x7f53b3d4853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f53b10d9d92 - 7: 0x7f53b3d49213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f53b3d48f0a - 9: 0x7f53b3d46709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f53b3d48bad - rust_begin_unwind 11: 0x7f53b0ae6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f53b0ae71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f53b37edad8 - 14: 0x7f53b37e62f6 - 15: 0x7f53b3830882 - ::codegen_crate 16: 0x7f53b3a05b34 - ::codegen_and_build_linker 17: 0x7f53b38e7c64 - 18: 0x7f53b38e10c7 - 19: 0x7f53b38dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7f53b38eaff1 - 21: 0x7f53b3d5584b - 22: 0x7f53b02a1f6f - start_thread 23: 0x7f53b031f5cc - __clone3 24: 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-04-24T09_07_17-3751614.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1724:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fd058146230 - ::fmt::h9076d363463cef76 1: 0x7fd057aa1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fd058139b53 - 3: 0x7fd058146092 - 4: 0x7fd0581486b2 - 5: 0x7fd05814853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fd0554d9d92 - 7: 0x7fd058149213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fd058148f0a - 9: 0x7fd058146709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7fd058148bad - rust_begin_unwind 11: 0x7fd054ee6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7fd054ee71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7fd057bedad8 - 14: 0x7fd057be62f6 - 15: 0x7fd057c30882 - ::codegen_crate 16: 0x7fd057e05b34 - ::codegen_and_build_linker 17: 0x7fd057ce7c64 - 18: 0x7fd057ce10c7 - 19: 0x7fd057cdcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7fd057ceaff1 - 21: 0x7fd05815584b - 22: 0x7fd0546a1f6f - start_thread 23: 0x7fd05471f5cc - __clone3 24: 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-04-24T09_07_17-3751578.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 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1855:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fcf22946230 - ::fmt::h9076d363463cef76 1: 0x7fcf222a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fcf22939b53 - 3: 0x7fcf22946092 - 4: 0x7fcf229486b2 - 5: 0x7fcf2294853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fcf1fcd9d92 - 7: 0x7fcf22949213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fcf22948f0a - 9: 0x7fcf22946709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7fcf22948bad - rust_begin_unwind 11: 0x7fcf1f6e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7fcf1f6e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7fcf223eb802 - 14: 0x7fcf2118b588 - 15: 0x7fcf223efcb7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[c8515a07a195242f]::result::Result>::{closure#0}, core[c8515a07a195242f]::result::Result> 16: 0x7fcf223f3a49 - 17: 0x7fcf2295584b - 18: 0x7fcf1eea1f6f - start_thread 19: 0x7fcf1ef1f5cc - __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-04-24T09_07_17-3751592.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7fcf22946230 - ::fmt::h9076d363463cef76 1: 0x7fcf222a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fcf22939b53 - 3: 0x7fcf22946092 - 4: 0x7fcf229486b2 - 5: 0x7fcf2294853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fcf1fcd9d92 - 7: 0x7fcf22949213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fcf20351942 - 9: 0x7fcf20349046 - std[e704c5c9c6f67171]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7fcf2034903f - std[e704c5c9c6f67171]::panicking::begin_panic:: 11: 0x7fcf203d8bfe - 12: 0x7fcf203bf78a - 13: 0x7fcf203bf3ab - 14: 0x7fcf203d8b40 - rustc_middle[16217dabf740581e]::util::bug::bug_fmt 15: 0x7fcf22430eee - ::join_codegen 16: 0x7fcf22606b56 - ::link 17: 0x7fcf224e124b - 18: 0x7fcf224dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7fcf224eaff1 - 20: 0x7fcf2295584b - 21: 0x7fcf1eea1f6f - start_thread 22: 0x7fcf1ef1f5cc - __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-04-24T09_07_17-3751592.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 'rustc' panicked at /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1163:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fedbc346230 - ::fmt::h9076d363463cef76 1: 0x7fedbbca1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fedbc339b53 - 3: 0x7fedbc346092 - 4: 0x7fedbc3486b2 - 5: 0x7fedbc34853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fedb96d9d92 - 7: 0x7fedbc349213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fedbc348f0a - 9: 0x7fedbc346709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7fedbc348bad - rust_begin_unwind 11: 0x7fedb90e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7fedb90e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7fedbbded63a - 14: 0x7fedbbde62f6 - 15: 0x7fedbbe30882 - ::codegen_crate 16: 0x7fedbc005b34 - ::codegen_and_build_linker 17: 0x7fedbbee7c64 - 18: 0x7fedbbee10c7 - 19: 0x7fedbbedcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7fedbbeeaff1 - 21: 0x7fedbc35584b - 22: 0x7fedb88a1f6f - start_thread 23: 0x7fedb891f5cc - __clone3 24: 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-04-24T09_07_17-3751618.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1163:10: failed to spawn helper thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f4147d46230 - ::fmt::h9076d363463cef76 1: 0x7f41476a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f4147d39b53 - 3: 0x7f4147d46092 - 4: 0x7f4147d486b2 - 5: 0x7f4147d4853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f41450d9d92 - 7: 0x7f4147d49213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f4147d48f0a - 9: 0x7f4147d46709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f4147d48bad - rust_begin_unwind 11: 0x7f4144ae6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f4144ae71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f41477ed63a - 14: 0x7f41477e62f6 - 15: 0x7f4147830882 - ::codegen_crate 16: 0x7f4147a05b34 - ::codegen_and_build_linker 17: 0x7f41478e7c64 - 18: 0x7f41478e10c7 - 19: 0x7f41478dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7f41478eaff1 - 21: 0x7f4147d5584b - 22: 0x7f41442a1f6f - start_thread 23: 0x7f414431f5cc - __clone3 24: 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-04-24T09_07_17-3751589.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 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1855:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f2a54746230 - ::fmt::h9076d363463cef76 1: 0x7f2a540a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f2a54739b53 - 3: 0x7f2a54746092 - 4: 0x7f2a547486b2 - 5: 0x7f2a5474853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f2a51ad9d92 - 7: 0x7f2a54749213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f2a54748f0a - 9: 0x7f2a54746709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f2a54748bad - rust_begin_unwind 11: 0x7f2a514e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f2a514e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f2a541eb802 - 14: 0x7f2a52f8b588 - 15: 0x7f2a541efcb7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[c8515a07a195242f]::result::Result>::{closure#0}, core[c8515a07a195242f]::result::Result> 16: 0x7f2a541f3a49 - 17: 0x7f2a5475584b - 18: 0x7f2a50ca1f6f - start_thread 19: 0x7f2a50d1f5cc - __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-04-24T09_07_17-3751599.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f2a54746230 - ::fmt::h9076d363463cef76 1: 0x7f2a540a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f2a54739b53 - 3: 0x7f2a54746092 - 4: 0x7f2a547486b2 - 5: 0x7f2a5474853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f2a51ad9d92 - 7: 0x7f2a54749213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f2a52151942 - 9: 0x7f2a52149046 - std[e704c5c9c6f67171]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f2a5214903f - std[e704c5c9c6f67171]::panicking::begin_panic:: 11: 0x7f2a521d8bfe - 12: 0x7f2a521bf78a - 13: 0x7f2a521bf3ab - 14: 0x7f2a521d8b40 - rustc_middle[16217dabf740581e]::util::bug::bug_fmt 15: 0x7f2a54230eee - ::join_codegen 16: 0x7f2a54406b56 - ::link 17: 0x7f2a542e124b - 18: 0x7f2a542dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f2a542eaff1 - 20: 0x7f2a5475584b - 21: 0x7f2a50ca1f6f - start_thread 22: 0x7f2a50d1f5cc - __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-04-24T09_07_17-3751599.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1724:6: failed to spawn coordinator thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7fc1d4b46230 - ::fmt::h9076d363463cef76 1: 0x7fc1d44a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7fc1d4b39b53 - 3: 0x7fc1d4b46092 - 4: 0x7fc1d4b486b2 - 5: 0x7fc1d4b4853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7fc1d1ed9d92 - 7: 0x7fc1d4b49213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7fc1d4b48f0a - 9: 0x7fc1d4b46709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7fc1d4b48bad - rust_begin_unwind 11: 0x7fc1d18e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7fc1d18e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7fc1d45edad8 - 14: 0x7fc1d45e62f6 - 15: 0x7fc1d4630882 - ::codegen_crate 16: 0x7fc1d4805b34 - ::codegen_and_build_linker 17: 0x7fc1d46e7c64 - 18: 0x7fc1d46e10c7 - 19: 0x7fc1d46dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 20: 0x7fc1d46eaff1 - 21: 0x7fc1d4b5584b - 22: 0x7fc1d10a1f6f - start_thread 23: 0x7fc1d111f5cc - __clone3 24: 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-04-24T09_07_17-3751587.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 'coordinator' panicked at /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1855:6: failed to spawn work thread: Os { code: 11, kind: WouldBlock, message: "Resource temporarily unavailable" } stack backtrace: 0: 0x7f72d2946230 - ::fmt::h9076d363463cef76 1: 0x7f72d22a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f72d2939b53 - 3: 0x7f72d2946092 - 4: 0x7f72d29486b2 - 5: 0x7f72d294853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f72cfcd9d92 - 7: 0x7f72d2949213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f72d2948f0a - 9: 0x7f72d2946709 - std::sys::backtrace::__rust_end_short_backtrace::ha1b507c6d907c5f8 10: 0x7f72d2948bad - rust_begin_unwind 11: 0x7f72cf6e6cd0 - core::panicking::panic_fmt::h32392bf1aecbf138 12: 0x7f72cf6e71d6 - core::result::unwrap_failed::h6924688a29e577a2 13: 0x7f72d23eb802 - 14: 0x7f72d118b588 - 15: 0x7f72d23efcb7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::<::spawn_named_thread::{closure#5}, core[c8515a07a195242f]::result::Result>::{closure#0}, core[c8515a07a195242f]::result::Result> 16: 0x7f72d23f3a49 - 17: 0x7f72d295584b - 18: 0x7f72ceea1f6f - start_thread 19: 0x7f72cef1f5cc - __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-04-24T09_07_17-3751594.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.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: /home/iurt/rpmbuild/BUILD/rust-1.86.0-build/rustc-1.86.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:2058:17: panic during codegen/LLVM phase stack backtrace: 0: 0x7f72d2946230 - ::fmt::h9076d363463cef76 1: 0x7f72d22a1913 - core::fmt::write::haa4f8d89103941d2 2: 0x7f72d2939b53 - 3: 0x7f72d2946092 - 4: 0x7f72d29486b2 - 5: 0x7f72d294853a - std::panicking::default_hook::h500c9e56ff33a7b6 6: 0x7f72cfcd9d92 - 7: 0x7f72d2949213 - std::panicking::rust_panic_with_hook::hb6c9c271e522a2af 8: 0x7f72d0351942 - 9: 0x7f72d0349046 - std[e704c5c9c6f67171]::sys::backtrace::__rust_end_short_backtrace::::{closure#0}, !> 10: 0x7f72d034903f - std[e704c5c9c6f67171]::panicking::begin_panic:: 11: 0x7f72d03d8bfe - 12: 0x7f72d03bf78a - 13: 0x7f72d03bf3ab - 14: 0x7f72d03d8b40 - rustc_middle[16217dabf740581e]::util::bug::bug_fmt 15: 0x7f72d2430eee - ::join_codegen 16: 0x7f72d2606b56 - ::link 17: 0x7f72d24e124b - 18: 0x7f72d24dcac7 - std[e704c5c9c6f67171]::sys::backtrace::__rust_begin_short_backtrace::::{closure#1}, ()>::{closure#0}, ()>::{closure#0}::{closure#0}, ()> 19: 0x7f72d24eaff1 - 20: 0x7f72d295584b - 21: 0x7f72ceea1f6f - start_thread 22: 0x7f72cef1f5cc - __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-04-24T09_07_17-3751594.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::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::entry (line 578) 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_exact (line 179) src/lib.rs - VecMap::retain (line 614) src/lib.rs - VecMap::split_off (line 330) src/lib.rs - VecMap::with_capacity (line 125) test result: FAILED. 4 passed; 19 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.23s error: doctest failed, to rerun pass `--doc` error: 1 target failed: `--doc` error: Bad exit status from /home/pterjan/rpmbuild/tmp/rpm-tmp.tsOVA2 (%check) RPM build errors: Bad exit status from /home/pterjan/rpmbuild/tmp/rpm-tmp.tsOVA2 (%check) I: [iurt_root_command] ERROR: chroot