From 16f330b4d3d2087f03f408eb87433b9ca10b192d65a1a7d4bfde273fb2f050e9 Mon Sep 17 00:00:00 2001 From: Martin Pluskal Date: Sat, 16 May 2020 06:42:35 +0000 Subject: [PATCH] Accepting request 802966 from home:Guillaume_G:branches:openSUSE:Factory:ARM - Disable test_ancient_{ctime,mtime} tests as they are known to be broken on aarch64 %arm ppc ppc64le s390x - Disable test_distant_{ctime,mtime} on %arm OBS-URL: https://build.opensuse.org/request/show/802966 OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/breezy?expand=0&rev=6 --- breezy.changes | 7 +++++++ breezy.spec | 10 ++++++++++ 2 files changed, 17 insertions(+) diff --git a/breezy.changes b/breezy.changes index d35aab5..52e77da 100644 --- a/breezy.changes +++ b/breezy.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue May 12 11:41:27 UTC 2020 - Guillaume GARDET + +- Disable test_ancient_{ctime,mtime} tests as they are known + to be broken on aarch64 %arm ppc ppc64le s390x +- Disable test_distant_{ctime,mtime} on %arm + ------------------------------------------------------------------- Tue Apr 7 08:40:35 UTC 2020 - Dominique Leuenberger diff --git a/breezy.spec b/breezy.spec index 17528de..010cec3 100644 --- a/breezy.spec +++ b/breezy.spec @@ -70,10 +70,20 @@ export PYTHONPATH=%{buildroot}%{python3_sitearch} export LANG=en_US.UTF8 # log_C log_BOGUS - borked with py3.8+ as you can't change encoding # test_pack_revision - endswith first arg must be bytes or a tuple of bytes, not str +# test_ancient_{ctime,mtime} - broken on aarch64 %%arm ppc ppc64le +# test_distant_{ctime,mtime} - broken on %%arm %{buildroot}%{_bindir}/bzr selftest -v --parallel=fork \ -Oselftest.timeout=6000 -x bash_completion \ -x breezy.tests.test_transport.TestSSHConnections.test_bzr_connect_to_bzr_ssh -x test_export_pot \ -x test_log_C -x test_log_BOGUS \ +%ifnarch %{ix86} x86_64 ppc64 + -x breezy.tests.test__dirstate_helpers.TestPackStat.test_ancient_ctime \ + -x breezy.tests.test__dirstate_helpers.TestPackStat.test_ancient_mtime \ +%endif +%ifarch %arm + -x breezy.tests.test__dirstate_helpers.TestPackStat.test_distant_ctime \ + -x breezy.tests.test__dirstate_helpers.TestPackStat.test_distant_mtime \ +%endif -x breezy.tests.test_xml.TestSerializer.test_pack_revision_5 \ -x breezy.tests.test_xml.TestSerializer.test_revision_text_v8 \ -x breezy.tests.test_xml.TestSerializer.test_revision_text_v7 \