From 27c5347c8c38bafedb1b48a5d8587d13eadcb90b Mon Sep 17 00:00:00 2001 From: Ronny Chevalier Date: Thu, 11 Dec 2014 17:59:10 +0100 Subject: test-execute: add tests for UMask directive --- src/test/test-execute.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/test/test-execute.c') diff --git a/src/test/test-execute.c b/src/test/test-execute.c index 60466f0d3f..91ccaf72b8 100644 --- a/src/test/test-execute.c +++ b/src/test/test-execute.c @@ -132,6 +132,11 @@ static void test_exec_environment(Manager *m) { test(m, "exec-environment-empty.service", 0, CLD_EXITED); } +static void test_exec_umask(Manager *m) { + test(m, "exec-umask-default.service", 0, CLD_EXITED); + test(m, "exec-umask-0177.service", 0, CLD_EXITED); +} + int main(int argc, char *argv[]) { test_function_t tests[] = { test_exec_workingdirectory, @@ -144,6 +149,7 @@ int main(int argc, char *argv[]) { test_exec_user, test_exec_group, test_exec_environment, + test_exec_umask, NULL, }; test_function_t *test = NULL; -- cgit v1.2.3-54-g00ecf