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.37Ohj1 Executing(%prep): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.PrXckJ + 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.eoEoJ6 + 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.k9jgU9 + 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.39s + RPM_EC=0 ++ jobs -p + exit 0 Executing(%install): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.nGmh3g + 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.VNcMtk + 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.61s 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_append ... ok test test::test_clone ... ok test test::test_clear ... 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-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::reserve_len (line 156) ... ok test src/lib.rs - VecMap::new (line 114) ... ok test src/lib.rs - VecMap::capacity (line 138) ... ok test src/lib.rs - VecMap::reserve_len_exact (line 179) ... ok test src/lib.rs - VecMap::clear (line 452) ... ok test src/lib.rs - VecMap::is_empty (line 436) ... ok test src/lib.rs - VecMap::len (line 420) ... ok test src/lib.rs - VecMap::contains_key (line 486) ... ok test src/lib.rs - VecMap::get (line 466) ... ok test src/lib.rs - VecMap::get_mut (line 503) ... ok test src/lib.rs - VecMap::remove (line 554) ... ok test src/lib.rs - VecMap::iter_mut (line 267) ... ok test src/lib.rs - VecMap::shrink_to_fit (line 198) ... ok test src/lib.rs - VecMap::retain (line 614) ... ok test src/lib.rs - VecMap::with_capacity (line 125) ... ok test src/lib.rs - VecMap::iter (line 238) ... ok test src/lib.rs - VecMap (line 36) ... ok test src/lib.rs - VecMap::insert (line 526) ... ok test src/lib.rs - VecMap::entry (line 578) ... ok test src/lib.rs - VecMap::into_iter (line 760) ... ok test src/lib.rs - VecMap::split_off (line 330) ... ok test src/lib.rs - VecMap::append (line 297) ... ok test src/lib.rs - VecMap::drain (line 394) ... ok test result: ok. 23 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.21s + RPM_EC=0 ++ jobs -p + exit 0 Processing files: rust-vec_map-devel-0.8.2-1.mga10.noarch Executing(%doc): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.FCszpH + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + cd vec_map-0.8.2 + DOCDIR=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/doc/rust-vec_map-devel + export LC_ALL=C + LC_ALL=C + export DOCDIR + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/doc/rust-vec_map-devel + cp -pr /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/README.md /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/doc/rust-vec_map-devel + RPM_EC=0 ++ jobs -p + exit 0 Executing(%license): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.B1JvFo + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + cd vec_map-0.8.2 + LICENSEDIR=/home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/licenses/rust-vec_map-devel + export LC_ALL=C + LC_ALL=C + export LICENSEDIR + /usr/bin/mkdir -p /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/licenses/rust-vec_map-devel + cp -pr /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/LICENSE-MIT /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/licenses/rust-vec_map-devel + cp -pr /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/vec_map-0.8.2/LICENSE-APACHE /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT/usr/share/licenses/rust-vec_map-devel + RPM_EC=0 ++ jobs -p + exit 0 Provides: crate(vec_map) = 0.8.2 rust-vec_map-devel = 0.8.2-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo Processing files: rust-vec_map+default-devel-0.8.2-1.mga10.noarch Provides: crate(vec_map/default) = 0.8.2 rust-vec_map+default-devel = 0.8.2-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(vec_map) = 0.8.2 Processing files: rust-vec_map+eders-devel-0.8.2-1.mga10.noarch Provides: crate(vec_map/eders) = 0.8.2 rust-vec_map+eders-devel = 0.8.2-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(vec_map) = 0.8.2 crate(vec_map/serde) = 0.8.2 Processing files: rust-vec_map+serde-devel-0.8.2-1.mga10.noarch Provides: crate(vec_map/serde) = 0.8.2 rust-vec_map+serde-devel = 0.8.2-1.mga10 Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 Requires: cargo crate(serde/default) >= 1.0.0 crate(serde/derive) >= 1.0.0 crate(vec_map) = 0.8.2 Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build/BUILDROOT Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-vec_map+serde-devel-0.8.2-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-vec_map+eders-devel-0.8.2-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-vec_map+default-devel-0.8.2-1.mga10.noarch.rpm Wrote: /home/pterjan/rpmbuild/RPMS/noarch/rust-vec_map-devel-0.8.2-1.mga10.noarch.rpm Executing(rmbuild): /bin/sh -e /home/pterjan/rpmbuild/tmp/rpm-tmp.5HO3mj + umask 022 + cd /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + test -d /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + /usr/bin/chmod -Rf a+rX,u+w,g-w,o-w /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + rm -rf /home/pterjan/rpmbuild/BUILD/rust-vec_map-0.8.2-build + RPM_EC=0 ++ jobs -p + exit 0 D: [iurt_root_command] Success!