mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-ruby/mini_portile2: fix tests with clang
Avoid tests that expect gcc to be the current C/C++ compiler. Closes: https://bugs.gentoo.org/924724 Signed-off-by: Hans de Graaff <graaff@gentoo.org>
This commit is contained in:
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/flavorjones/mini_portile"
|
||||
LICENSE="MIT"
|
||||
SLOT="$(ver_cut 1-2)"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos"
|
||||
IUSE=""
|
||||
IUSE="test"
|
||||
|
||||
BDEPEND="test? ( dev-build/cmake )"
|
||||
|
||||
@@ -24,6 +24,13 @@ ruby_add_bdepend "test? (
|
||||
dev-ruby/webrick
|
||||
)"
|
||||
|
||||
all_ruby_prepare() {
|
||||
# Avoid tests that expect gcc to be the main compiler, which we
|
||||
# cannot guarantee.
|
||||
sed -e '/test_configure_defaults_with/askip("Requires gcc to be the C/C++ compiler.")' \
|
||||
-i test/test_cmake.rb || die
|
||||
}
|
||||
|
||||
each_ruby_test() {
|
||||
${RUBY} -w -W2 -I. -Ilib -e 'Dir["test/test_*.rb"].map{|f| require f}' || die
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user