From cc3ddc851fbe5adf9dfc7e4a702a8b5b6a1186d6 Mon Sep 17 00:00:00 2001 From: Ronny Chevalier Date: Mon, 21 Sep 2015 15:36:07 +0200 Subject: test-execute: add tests for RuntimeDirectory --- src/test/test-execute.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/test/test-execute.c') diff --git a/src/test/test-execute.c b/src/test/test-execute.c index 0f4172e722..60540f8d28 100644 --- a/src/test/test-execute.c +++ b/src/test/test-execute.c @@ -137,6 +137,11 @@ static void test_exec_umask(Manager *m) { test(m, "exec-umask-0177.service", 0, CLD_EXITED); } +static void test_exec_runtimedirectory(Manager *m) { + test(m, "exec-runtimedirectory.service", 0, CLD_EXITED); + test(m, "exec-runtimedirectory-mode.service", 0, CLD_EXITED); +} + int main(int argc, char *argv[]) { test_function_t tests[] = { test_exec_workingdirectory, @@ -150,6 +155,7 @@ int main(int argc, char *argv[]) { test_exec_group, test_exec_environment, test_exec_umask, + test_exec_runtimedirectory, NULL, }; test_function_t *test = NULL; @@ -165,6 +171,7 @@ int main(int argc, char *argv[]) { return EXIT_TEST_SKIP; } + assert_se(setenv("XDG_RUNTIME_DIR", "/tmp/", 1) == 0); assert_se(set_unit_path(TEST_DIR) >= 0); r = manager_new(MANAGER_USER, true, &m); -- cgit v1.2.3-54-g00ecf