Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/rdfind/
Date: Wed, 27 Apr 2022 13:19:12
Message-Id: 1651065536.4cca1e667154408161a63371d25eb6d3d24b6379.juippis@gentoo
1 commit: 4cca1e667154408161a63371d25eb6d3d24b6379
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Sun Apr 24 10:41:18 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 13:18:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cca1e66
7
8 app-misc/rdfind: addpredict / for tests
9
10 Tests are trying to modify $(which ls) and expect it to fail.
11
12 Closes: https://bugs.gentoo.org/840544
13 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
14 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
15
16 app-misc/rdfind/rdfind-1.5.0.ebuild | 9 ++++++++-
17 1 file changed, 8 insertions(+), 1 deletion(-)
18
19 diff --git a/app-misc/rdfind/rdfind-1.5.0.ebuild b/app-misc/rdfind/rdfind-1.5.0.ebuild
20 index 6425d24842bd..e376f74993f8 100644
21 --- a/app-misc/rdfind/rdfind-1.5.0.ebuild
22 +++ b/app-misc/rdfind/rdfind-1.5.0.ebuild
23 @@ -1,4 +1,4 @@
24 -# Copyright 1999-2021 Gentoo Authors
25 +# Copyright 1999-2022 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=8
29 @@ -24,3 +24,10 @@ src_prepare() {
30 default
31 eautoreconf
32 }
33 +
34 +src_test() {
35 + # Bug 840544
36 + local -x SANDBOX_PREDICT="${SANDBOX_PREDICT}"
37 + addpredict /
38 + default
39 +}