Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/tox/
Date: Fri, 04 Sep 2020 20:54:00
Message-Id: 1599252831.cdd9fdf8b17e722370f3b10daa5193ab1dd70625.sam@gentoo
1 commit: cdd9fdf8b17e722370f3b10daa5193ab1dd70625
2 Author: Josiah Mullins <JoMull01 <AT> protonmail <DOT> com>
3 AuthorDate: Sat Jul 25 02:14:43 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 20:53:51 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdd9fdf8
7
8 net-libs/tox: set tests to run with only one thread
9
10 It seems that the bug occurs from the tests being run
11 in parallel. This commit prevents that.
12
13 Closes: https://bugs.gentoo.org/730434
14
15 Signed-off-by: Josiah Mullins <JoMull01 <AT> protonmail.com>
16 Signed-off-by: Sam James <sam <AT> gentoo.org>
17
18 net-libs/tox/tox-0.2.11.ebuild | 4 ++++
19 net-libs/tox/tox-0.2.12.ebuild | 4 ++++
20 2 files changed, 8 insertions(+)
21
22 diff --git a/net-libs/tox/tox-0.2.11.ebuild b/net-libs/tox/tox-0.2.11.ebuild
23 index bd541befcf1..d293d706786 100644
24 --- a/net-libs/tox/tox-0.2.11.ebuild
25 +++ b/net-libs/tox/tox-0.2.11.ebuild
26 @@ -80,6 +80,10 @@ src_configure() {
27 cmake_src_configure
28 }
29
30 +src_test() {
31 + cmake_src_test -j1
32 +}
33 +
34 src_install() {
35 cmake_src_install
36
37
38 diff --git a/net-libs/tox/tox-0.2.12.ebuild b/net-libs/tox/tox-0.2.12.ebuild
39 index f6c830c2713..3723ccda4d6 100644
40 --- a/net-libs/tox/tox-0.2.12.ebuild
41 +++ b/net-libs/tox/tox-0.2.12.ebuild
42 @@ -80,6 +80,10 @@ src_configure() {
43 cmake_src_configure
44 }
45
46 +src_test() {
47 + cmake_src_test -j1
48 +}
49 +
50 src_install() {
51 cmake_src_install