Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mold for openSUSE:Factory checked in at 2022-08-01 21:32:54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mold (Old) and /work/SRC/openSUSE:Factory/.mold.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mold" Mon Aug 1 21:32:54 2022 rev:17 rq:992001 version:1.3.1 Changes: -------- --- /work/SRC/openSUSE:Factory/mold/mold.changes 2022-07-01 13:45:35.226955123 +0200 +++ /work/SRC/openSUSE:Factory/.mold.new.1533/mold.changes 2022-08-01 21:34:05.450291972 +0200 @@ -1,0 +2,5 @@ +Mon Aug 1 05:35:29 UTC 2022 - Martin Li??ka <mli...@suse.cz> + +- Add fix-tests.patch which fixes tests on i586. + +------------------------------------------------------------------- New: ---- fix-tests.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mold.spec ++++++ --- /var/tmp/diff_new_pack.4hYgyB/_old 2022-08-01 21:34:05.994293533 +0200 +++ /var/tmp/diff_new_pack.4hYgyB/_new 2022-08-01 21:34:06.006293567 +0200 @@ -24,7 +24,8 @@ Group: Development/Tools/Building URL: https://github.com/rui314/mold Source: https://github.com/rui314/mold/archive/v%{version}/mold-%{version}.tar.gz -ExclusiveArch: aarch64 %arm x86_64 aarch64 riscv64 +Patch0: fix-tests.patch +ExclusiveArch: aarch64 %arm %ix86 x86_64 aarch64 riscv64 BuildRequires: cmake %if %{suse_version} < 1550 BuildRequires: gcc10-c++ ++++++ fix-tests.patch ++++++ diff --git a/test/elf/relocatable.sh b/test/elf/relocatable.sh index 0065479..c5fe661 100755 --- a/test/elf/relocatable.sh +++ b/test/elf/relocatable.sh @@ -14,7 +14,7 @@ t=out/test/elf/$testname mkdir -p $t # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98667 -[ $MACHINE = i386 ] && { echo skipped; exit; } +[ $MACHINE = i386 -o $MACHINE = i686 ] && { echo skipped; exit; } cat <<EOF | $CXX -c -o $t/a.o -xc++ - int one() { return 1; }