diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-01 20:30:11 -0600 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-11-02 08:55:24 -0600 |
commit | 999a6c5d9c8bc9536f98ce26dde1de5adaabe29b (patch) | |
tree | 4feaa100cef91806feaacb3875b085525538b637 /src/test | |
parent | 2ca8dc15f9cc050a8845b0a55f8226a7024ca623 (diff) |
tests: make sure tests pass when invoked in "sudo"
This is a follow-up for 6309e51ea32d64524431ee65c49eecd44390da8f and makes sure
we compare test results with the right user identifier.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-unit-file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test-unit-file.c b/src/test/test-unit-file.c index 7ef087a2e3..12f48bf435 100644 --- a/src/test/test-unit-file.c +++ b/src/test/test-unit-file.c @@ -589,7 +589,7 @@ static void test_install_printf(void) { assert_se(specifier_machine_id('m', NULL, NULL, &mid) >= 0 && mid); assert_se(specifier_boot_id('b', NULL, NULL, &bid) >= 0 && bid); assert_se((host = gethostname_malloc())); - assert_se((user = getusername_malloc())); + assert_se((user = uid_to_name(getuid()))); assert_se(asprintf(&uid, UID_FMT, getuid()) >= 0); #define expect(src, pattern, result) \ |