Hello community, here is the log from the commit of package strace for openSUSE:Factory checked in at 2015-10-14 16:38:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/strace (Old) and /work/SRC/openSUSE:Factory/.strace.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "strace" Changes: -------- --- /work/SRC/openSUSE:Factory/strace/strace.changes 2015-05-22 16:29:18.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.strace.new/strace.changes 2015-10-14 16:38:17.000000000 +0200 @@ -1,0 +2,6 @@ +Mon Sep 28 14:20:49 UTC 2015 - [email protected] + +- new patch to bypass bug boo#946928 + strace_ppc64le_bypass_getrandom_hang.patch + +------------------------------------------------------------------- New: ---- strace_ppc64le_bypass_getrandom_hang.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ strace.spec ++++++ --- /var/tmp/diff_new_pack.rzEnHn/_old 2015-10-14 16:38:18.000000000 +0200 +++ /var/tmp/diff_new_pack.rzEnHn/_new 2015-10-14 16:38:18.000000000 +0200 @@ -44,6 +44,7 @@ Patch13: 0013-aarch64-properly-decode-generic-syscalls.patch Patch14: 0014-stat64-v.test-add-newfstatat-syscall-support.patch Patch15: 0015-tests-uid-use-fchown-instead-of-chown.patch +Patch16: strace_ppc64le_bypass_getrandom_hang.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: libacl-devel BuildRequires: libaio-devel @@ -93,6 +94,9 @@ %patch13 -p1 %patch14 -p1 %patch15 -p1 +%ifarch ppc64le +%patch16 -p1 +%endif %build export CFLAGS="$RPM_OPT_FLAGS" ++++++ strace_ppc64le_bypass_getrandom_hang.patch ++++++ From: Michel Normand <[email protected]> Subject: strace ppc64le bypass getrandom hang Date: Mon, 28 Sep 2015 16:19:53 +0200 strace ppc64le bypass getrandom hang as per bug boo#946928 Signed-off-by: Michel Normand <[email protected]> --- tests/getrandom.test | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Index: strace-4.10/tests/getrandom.test =================================================================== --- strace-4.10.orig/tests/getrandom.test +++ strace-4.10/tests/getrandom.test @@ -5,8 +5,9 @@ . "${srcdir=.}/init.sh" check_prog awk - -./getrandom || +# bypass hung condition that timeout after 60s as per bug boo#946928 +# by removing the first getrandom call. +#/getrandom || framework_skip_ 'getrandom is not available' args="-e getrandom -xx -s3 ./getrandom"
