dev-ruby/rqrcode: add missing die to tests

Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
This commit is contained in:
Hans de Graaff
2019-01-26 09:40:59 +01:00
parent ed9d3ef3c8
commit 7f06e9a5fd

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2018 Gentoo Authors
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -26,5 +26,5 @@ all_ruby_prepare() {
}
each_ruby_test() {
${RUBY} -Ilib:test:. -e "Dir['test/test_r*.rb'].each{|f| require f}"
${RUBY} -Ilib:test:. -e "Dir['test/test_r*.rb'].each{|f| require f}" || die
}