diff options
Diffstat (limited to 'rt/tst-mqueue4.c')
-rw-r--r-- | rt/tst-mqueue4.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rt/tst-mqueue4.c b/rt/tst-mqueue4.c index fa83ece95a..aa31706f87 100644 --- a/rt/tst-mqueue4.c +++ b/rt/tst-mqueue4.c @@ -93,6 +93,18 @@ do_test (void) result = 1; } + if (mq_unlink (name) == 0) + { + puts ("mq_unlink with too long name component unexpectedly succeeded"); + result = 1; + } + else if (errno != ENAMETOOLONG) + { + printf ("mq_unlink with too long name component did not fail with " + "ENAMETOOLONG: %m\n"); + result = 1; + } + *p = '\0'; attr.mq_maxmsg = 1; attr.mq_msgsize = 3; |