summaryrefslogtreecommitdiff
path: root/src/test/test-process-util.c
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2016-11-20 19:38:58 +0300
committerGitHub <noreply@github.com>2016-11-20 19:38:58 +0300
commit270f419316758162bfead87608cbaeeb4fd6987e (patch)
tree47b8efe91c3326345d861f888ad59a38a44d502e /src/test/test-process-util.c
parent3f59367e6fae0ba991d1e287a0f784ecdcda79af (diff)
parentcf5f9bb8402906d37cdd55e8b06da9c7b5ac06a5 (diff)
Merge pull request #4691 from keszybz/test-suite-fixes
Test suite fixes
Diffstat (limited to 'src/test/test-process-util.c')
-rw-r--r--src/test/test-process-util.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/test/test-process-util.c b/src/test/test-process-util.c
index 9ada46b1e9..7242b2c8b5 100644
--- a/src/test/test-process-util.c
+++ b/src/test/test-process-util.c
@@ -193,7 +193,14 @@ static void test_get_process_cmdline_harder(void) {
fd = mkostemp(path, O_CLOEXEC);
assert_se(fd >= 0);
- assert_se(mount(path, "/proc/self/cmdline", "bind", MS_BIND, NULL) >= 0);
+
+ if (mount(path, "/proc/self/cmdline", "bind", MS_BIND, NULL) < 0) {
+ /* This happens under selinux… Abort the test in this case. */
+ log_warning_errno(errno, "mount(..., \"/proc/self/cmdline\", \"bind\", ...) failed: %m");
+ assert(errno == EACCES);
+ return;
+ }
+
assert_se(unlink(path) >= 0);
assert_se(prctl(PR_SET_NAME, "testa") >= 0);