Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage-utils:master commit in: tests/qcheck/
Date: Fri, 23 Mar 2018 20:17:46
Message-Id: 1521823955.8c2d770ba0fc714a20c937b3b9fb7e732665e86d.grobian@gentoo
1 commit: 8c2d770ba0fc714a20c937b3b9fb7e732665e86d
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 23 16:52:35 2018 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Fri Mar 23 16:52:35 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=8c2d770b
7
8 qcheck: don't require ownership to be preserved by cp
9
10 ownership isn't really an issue here, so don't fail on it
11
12 tests/qcheck/dotest | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/tests/qcheck/dotest b/tests/qcheck/dotest
16 index d7c337b..fa1feed 100755
17 --- a/tests/qcheck/dotest
18 +++ b/tests/qcheck/dotest
19 @@ -54,7 +54,7 @@ test 08 1 "qcheck -v a-b/pkg"
20
21 # update check
22 (
23 -cp -a "${ROOT}" mod
24 +cp -PR --preserve=mode,timestamps "${ROOT}" mod
25 ROOT=${PWD}/mod
26 test 09 0 "qcheck -u a-b/pkg && qcheck a-b/pkg"
27 )