commit python3 for openSUSE:Factory
Hello community, here is the log from the commit of package python3 for openSUSE:Factory checked in at 2014-03-31 20:42:57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python3 (Old) and /work/SRC/openSUSE:Factory/.python3.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "python3" Changes: -------- --- /work/SRC/openSUSE:Factory/python3/python3-base.changes 2014-03-21 15:47:41.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.python3.new/python3-base.changes 2014-03-31 20:42:59.000000000 +0200 @@ -1,0 +2,11 @@ +Wed Mar 26 15:24:46 UTC 2014 - jmatejek@suse.com + +- raise timeout value for test_subprocess to 10s (might fix + intermittent build failures in OBS) + +------------------------------------------------------------------- +Mon Mar 24 17:29:31 UTC 2014 - dmueller@suse.com + +- remove blacklisting of test_posix on aarch64: qemu bug is fixed + +------------------------------------------------------------------- python3.changes: same change New: ---- subprocess-raise-timeout.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python3-base.spec ++++++ --- /var/tmp/diff_new_pack.WhQMK6/_old 2014-03-31 20:43:00.000000000 +0200 +++ /var/tmp/diff_new_pack.WhQMK6/_new 2014-03-31 20:43:00.000000000 +0200 @@ -83,6 +83,8 @@ Patch13: libffi-ppc64le.diff # Fix tests for sqlite 3.8.4 Patch14: python-3.4.0rc2-sqlite-3.8.4-tests.patch +# Raise timeout value for test_subprocess +Patch15: subprocess-raise-timeout.patch ### COMMON-PATCH-END ### BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -213,6 +215,7 @@ %patch12 -p1 %patch13 -p0 %patch14 -p1 +%patch15 -p1 # drop Autoconf version requirement sed -i 's/^AC_PREREQ/dnl AC_PREREQ/' configure.ac @@ -279,10 +282,6 @@ # qemu bug (siginterrupt handling) EXCLUDE="$EXCLUDE test_signal" %endif -%ifarch aarch64 -# qemu bug (wrong USE_UID16) -EXCLUDE="$EXCLUDE test_posix" -%endif # on x86_64, SLE_11_SP2 only, extreme gamma function values (close to negative # integers) fail. Is probably a bug/imperfection in -lm python3.spec: same change ++++++ subprocess-raise-timeout.patch ++++++ Index: Python-3.4.0/Lib/test/test_subprocess.py =================================================================== --- Python-3.4.0.orig/Lib/test/test_subprocess.py 2014-03-17 03:31:30.000000000 +0100 +++ Python-3.4.0/Lib/test/test_subprocess.py 2014-03-26 16:23:08.489610918 +0100 @@ -991,7 +991,8 @@ self.assertIn("0.0001", str(c.exception)) # For coverage of __str__. # Some heavily loaded buildbots (sparc Debian 3.x) require this much # time to start. - self.assertEqual(p.wait(timeout=3), 0) + # OBS might require even more + self.assertEqual(p.wait(timeout=10), 0) def test_invalid_bufsize(self): # an invalid type of the bufsize argument should raise -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de