diff options
author | Philipp Rösner <rndxelement@protonmail.com> | 2023-02-14 16:39:27 +0100 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2023-02-26 09:04:10 +0200 |
commit | 6f33ded2f108cf12b45913056af20b8abb88c97d (patch) | |
tree | 1bb5622bccda7a4884ddc23fdd1890e0b4776eb4 | |
parent | dev-libs/libxlsxwriter: update DESCRIPTION, HOMEPAGE (diff) | |
download | gentoo-6f33ded2f108cf12b45913056af20b8abb88c97d.tar.gz gentoo-6f33ded2f108cf12b45913056af20b8abb88c97d.tar.bz2 gentoo-6f33ded2f108cf12b45913056af20b8abb88c97d.zip |
media-sound/flacon: disable sandbox for tests on 9.4.0
The tests don't work at all with FEATURES=-usersandbox.
Most of the tests pass if the sandbox is disabled, so
disable sandbox for tests.
So far the reason for the sandbox inhibiting the tests
is unknown and subject to future investigation.
Bug: https://bugs.gentoo.org/831592
Signed-off-by: Philipp Rösner <rndxelement@protonmail.com>
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
-rw-r--r-- | media-sound/flacon/flacon-9.4.0.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/media-sound/flacon/flacon-9.4.0.ebuild b/media-sound/flacon/flacon-9.4.0.ebuild index 6de27bcb88a1..74f7a97e458b 100644 --- a/media-sound/flacon/flacon-9.4.0.ebuild +++ b/media-sound/flacon/flacon-9.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -62,6 +62,11 @@ src_configure() { } src_test() { + # All tests fail with enabled sandbox + # TODO: Get all tests to pass + # See bug: #831592 + local -x SANDBOX_ON=0 + virtx "${BUILD_DIR}/tests/${PN}_test" || die } |