From: Yu Watanabe Date: Thu, 13 Sep 2018 07:37:33 +0000 (+0900) Subject: test: unset $XDG_{CONFIG,DATA}_DIRS X-Git-Tag: v240~730 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b8b1056d926440e2e1b58ffe25012445031dac5;p=thirdparty%2Fsystemd.git test: unset $XDG_{CONFIG,DATA}_DIRS When $XDG_DATA_DIRS is unset, then, the default value '/usr/local/share:/usr/share' is used. When $XDG_DATA_DIRS contain the default paths but the order is inverted: '/usr/share:/usr/local/share', then test-path-lookup fails. Fixes #10002. --- diff --git a/src/test/test-path-lookup.c b/src/test/test-path-lookup.c index 892293cb10e..d6ea659d1db 100644 --- a/src/test/test-path-lookup.c +++ b/src/test/test-path-lookup.c @@ -40,6 +40,8 @@ static void test_user_and_global_paths(void) { unsigned k = 0; assert_se(unsetenv("SYSTEMD_UNIT_PATH") == 0); + assert_se(unsetenv("XDG_DATA_DIRS") == 0); + assert_se(unsetenv("XDG_CONFIG_DIRS") == 0); assert_se(lookup_paths_init(&lp_global, UNIT_FILE_GLOBAL, 0, NULL) == 0); assert_se(lookup_paths_init(&lp_user, UNIT_FILE_USER, 0, NULL) == 0);