diff options
author | Thomas Deutschmann <whissi@gentoo.org> | 2018-09-01 17:19:27 +0200 |
---|---|---|
committer | Thomas Deutschmann <whissi@gentoo.org> | 2018-09-01 17:19:52 +0200 |
commit | 6b3a23b766b2ee1c19712e8a5c4925b9eb1ba0dd (patch) | |
tree | 6fd05bec615a9c4db3e680e8c0840f5cb0af6807 /dev-libs/apr/files | |
parent | games-simulation/corsix-th: Revive package following last-rites (diff) | |
download | gentoo-6b3a23b766b2ee1c19712e8a5c4925b9eb1ba0dd.tar.gz gentoo-6b3a23b766b2ee1c19712e8a5c4925b9eb1ba0dd.tar.bz2 gentoo-6b3a23b766b2ee1c19712e8a5c4925b9eb1ba0dd.zip |
dev-libs/apr: skip testlfs test
Test only runs on non 64-bit systems and fails due to
a Gentoo sandbox issue. To avoid requiring FEATURES=-usersandbox
for this package, we are now skipping this test.
Closes: https://bugs.gentoo.org/603244
Package-Manager: Portage-2.3.48, Repoman-2.3.10
Diffstat (limited to 'dev-libs/apr/files')
-rw-r--r-- | dev-libs/apr/files/apr-1.6.3-skip-known-failing-tests.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev-libs/apr/files/apr-1.6.3-skip-known-failing-tests.patch b/dev-libs/apr/files/apr-1.6.3-skip-known-failing-tests.patch new file mode 100644 index 000000000000..79efb502a8d0 --- /dev/null +++ b/dev-libs/apr/files/apr-1.6.3-skip-known-failing-tests.patch @@ -0,0 +1,18 @@ +Skip testlfs test which only runs on non 64-bit systems and fails +on Gentoo due to a sandbox issue. Bug #603244 + +--- a/test/Makefile.in ++++ b/test/Makefile.in +@@ -172,7 +172,11 @@ check: $(TESTALL_COMPONENTS) $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE) + fi; \ + done; \ + else \ +- ./$$prog -v; \ ++ if test "$$prog" = 'testall@EXEEXT@'; then \ ++ ./$$prog -v -x testlfs; \ ++ else \ ++ ./$$prog -v; \ ++ fi; \ + status=$$?; \ + if test $$status != 0; then \ + teststatus=$$status; \ |