Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/json/
Date: Sun, 30 Apr 2017 19:26:23
Message-Id: 1493580372.2794d51b40d3d19a96a92f342bad68526ec33286.graaff@gentoo
1 commit: 2794d51b40d3d19a96a92f342bad68526ec33286
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 30 19:14:38 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 30 19:26:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2794d51b
7
8 dev-ruby/json: fix tests for test-unit:2
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-ruby/json/json-1.8.3.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-ruby/json/json-1.8.3.ebuild b/dev-ruby/json/json-1.8.3.ebuild
16 index f28acee7b26..4c33066a9d1 100644
17 --- a/dev-ruby/json/json-1.8.3.ebuild
18 +++ b/dev-ruby/json/json-1.8.3.ebuild
19 @@ -52,11 +52,11 @@ each_ruby_compile() {
20
21 each_ruby_test() {
22 JSON=pure \
23 - ${RUBY} -Iext:lib -S testrb tests/test_*.rb || die "pure ruby tests failed"
24 + ${RUBY} -Iext:lib -S testrb-2 tests/test_*.rb || die "pure ruby tests failed"
25
26 if [[ $(basename ${RUBY}) != "jruby" ]]; then
27 JSON=ext \
28 - ${RUBY} -Iext:lib -S testrb tests/test_*.rb || die "ext ruby tests failed"
29 + ${RUBY} -Iext:lib -S testrb-2 tests/test_*.rb || die "ext ruby tests failed"
30 fi
31 }