Gentoo Archives: gentoo-commits

From: "Tiziano Müller" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/source-highlight/
Date: Sat, 13 Apr 2019 13:57:40
Message-Id: 1555163840.364ab66d47a0098019eb131714254a8b38a3afc4.dev-zero@gentoo
1 commit: 364ab66d47a0098019eb131714254a8b38a3afc4
2 Author: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 13 13:56:35 2019 +0000
4 Commit: Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 13 13:57:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=364ab66d
7
8 dev-util/source-highlight: serialize tests
9
10 Upstream uses the same intermediate files in multiple tests, running
11 them in parallel by make will eventually break one or more tests.
12
13 Closes: https://bugs.gentoo.org/635100
14 Package-Manager: Portage-2.3.62, Repoman-2.3.12
15 Signed-off-by: Tiziano Müller <dev-zero <AT> gentoo.org>
16
17 dev-util/source-highlight/source-highlight-3.1.8.ebuild | 4 +++-
18 1 file changed, 3 insertions(+), 1 deletion(-)
19
20 diff --git a/dev-util/source-highlight/source-highlight-3.1.8.ebuild b/dev-util/source-highlight/source-highlight-3.1.8.ebuild
21 index 4cc9a772630..4f6024727e8 100644
22 --- a/dev-util/source-highlight/source-highlight-3.1.8.ebuild
23 +++ b/dev-util/source-highlight/source-highlight-3.1.8.ebuild
24 @@ -44,5 +44,7 @@ src_install () {
25
26 src_test() {
27 export LD_LIBRARY_PATH="${S}/lib/srchilite/.libs/"
28 - default
29 + # upstream uses the same temporary filenames in numerous places
30 + # see https://bugs.gentoo.org/635100
31 + emake -j1 check
32 }