diff options
author | 2024-05-24 16:08:54 -0400 | |
---|---|---|
committer | 2024-05-24 16:09:38 -0400 | |
commit | c18f6bc53a6217bf45d83bc55e9966931c483201 (patch) | |
tree | 8ee66638c4be2d6ebb7dd2258a4b13b1296ff6d5 | |
parent | dev-python/scipy: Bump to 1.13.1 (diff) | |
download | gentoo-c18f6bc53a6217bf45d83bc55e9966931c483201.tar.gz gentoo-c18f6bc53a6217bf45d83bc55e9966931c483201.tar.bz2 gentoo-c18f6bc53a6217bf45d83bc55e9966931c483201.zip |
dev-util/kyua: skip coredump tests
Closes: https://bugs.gentoo.org/654538
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
-rw-r--r-- | dev-util/kyua/kyua-0.13-r3.ebuild | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dev-util/kyua/kyua-0.13-r3.ebuild b/dev-util/kyua/kyua-0.13-r3.ebuild index cc827541fe26..f19ac7a8b9ad 100644 --- a/dev-util/kyua/kyua-0.13-r3.ebuild +++ b/dev-util/kyua/kyua-0.13-r3.ebuild @@ -30,6 +30,13 @@ src_configure() { # Uses std::auto_ptr (deprecated in c++11, removed in c++17) append-cxxflags "-std=c++14" + # Skip coredump tests; they fail when sudo sets RLIMIT_CORE = 0. + cat >"${T}/kyua.conf" <<-EOF || die + syntax(2) + test_suites.kyua.run_coredump_tests = "false" + EOF + local -x KYUA_CONFIG_FILE_FOR_CHECK="${T}/kyua.conf" + default } |