diff options
author | Julian Andres Klode <julian.klode@canonical.com> | 2018-05-16 12:09:47 +0200 |
---|---|---|
committer | Julian Andres Klode <julian.klode@canonical.com> | 2018-06-25 12:06:21 +0200 |
commit | 90de65bb3fbacbc8a1443161c212c7ecbadfab1a (patch) | |
tree | 015bb714641f0d232760c1d858e9f5d50a7f4379 /test/integration/test-disappearing-packages | |
parent | cda69dac5b460970536820738cffc0d5948a9a2f (diff) |
tests: Do not expect requested-by if sudo was invoked by root
If sudo was invoked by root, SUDO_UID will be 0, and apt
will not print a Requested-By line.
(cherry picked from commit 68842e1741a5005b1e3f0a07deffd737c65e3294)
Diffstat (limited to 'test/integration/test-disappearing-packages')
-rwxr-xr-x | test/integration/test-disappearing-packages | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/test-disappearing-packages b/test/integration/test-disappearing-packages index e8748e6bc..b27755361 100755 --- a/test/integration/test-disappearing-packages +++ b/test/integration/test-disappearing-packages @@ -60,7 +60,7 @@ all files have been overwritten by other packages: Note: This is done automatically and on purpose by dpkg.' tail -n 4 disappear.output sed -i rootdir/var/log/apt/history.log -e '/^Commandline: / d' -e '/^Start-Date: / d' -e '/^End-Date: / d' -e "s#:$(getarchitecture 'native') #:native #" -if [ -n "$SUDO_USER" ]; then +if [ -n "$SUDO_USER" -a "$(id -u "$SUDO_USER")" -gt 0 ]; then testfileequal 'rootdir/var/log/apt/history.log' " Requested-By: $SUDO_USER ($(id -u "$SUDO_USER")) Install: old-pkg:native (1) |