Add EIDRM test for msgctl(2) Signed-off-by: Zeng Linggang <[email protected]> --- runtest/syscalls | 1 + runtest/syscalls-ipc | 1 + testcases/kernel/syscalls/.gitignore | 1 + testcases/kernel/syscalls/ipc/msgctl/msgctl13.c | 107 ++++++++++++++++++++++++ 4 files changed, 110 insertions(+) create mode 100644 testcases/kernel/syscalls/ipc/msgctl/msgctl13.c
diff --git a/runtest/syscalls b/runtest/syscalls index 3254e4d..84ab9db 100644 --- a/runtest/syscalls +++ b/runtest/syscalls @@ -628,6 +628,7 @@ msgctl09 msgctl09 msgctl10 msgctl10 msgctl11 msgctl11 msgctl12 msgctl12 +msgctl13 msgctl13 msgget01 msgget01 msgget02 msgget02 diff --git a/runtest/syscalls-ipc b/runtest/syscalls-ipc index 415357b..02b6e45 100644 --- a/runtest/syscalls-ipc +++ b/runtest/syscalls-ipc @@ -10,6 +10,7 @@ msgctl09 msgctl09 msgctl10 msgctl10 msgctl11 msgctl11 msgctl12 msgctl12 +msgctl13 msgctl13 msgget01 msgget01 msgget02 msgget02 diff --git a/testcases/kernel/syscalls/.gitignore b/testcases/kernel/syscalls/.gitignore index 7be0424..d5ecf01 100644 --- a/testcases/kernel/syscalls/.gitignore +++ b/testcases/kernel/syscalls/.gitignore @@ -374,6 +374,7 @@ /ipc/msgctl/msgctl10 /ipc/msgctl/msgctl11 /ipc/msgctl/msgctl12 +/ipc/msgctl/msgctl13 /ipc/msgget/msgget01 /ipc/msgget/msgget02 /ipc/msgget/msgget03 diff --git a/testcases/kernel/syscalls/ipc/msgctl/msgctl13.c b/testcases/kernel/syscalls/ipc/msgctl/msgctl13.c new file mode 100644 index 0000000..f5a0c38 --- /dev/null +++ b/testcases/kernel/syscalls/ipc/msgctl/msgctl13.c @@ -0,0 +1,107 @@ +/* + * Copyright (c) 2013 Fujitsu Ltd. + * Author: Zeng Linggang <[email protected]> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of version 2 of the GNU General Public License as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it would be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * + * You should have received a copy of the GNU General Public License along + * with this program. + */ + +#define _GNU_SOURCE +#include <sys/types.h> +#include <sys/ipc.h> +#include <sys/msg.h> +#include <errno.h> + +#include "test.h" +#include "usctest.h" +#include "ipcmsg.h" + +static int msg_q; + +static void setup1(void); + +static struct test_case_t { + int *queue_id; + int ipc_cmd; + char *name; + void (*setup)(void); +} test_cases[] = { + {&msg_q, IPC_RMID, "IPC_RMID", setup1}, +}; + +char *TCID = "acct13"; +int TST_TOTAL = ARRAY_SIZE(test_cases); + +int main(int argc, char *argv[]) +{ + int lc; + char *msg; + int i; + struct msqid_ds qs_buf; + + msg = parse_opts(argc, argv, NULL, NULL); + if (msg != NULL) + tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg); + + setup(); + + for (lc = 0; TEST_LOOPING(lc); lc++) { + + tst_count = 0; + + for (i = 0; i < TST_TOTAL; i++) { + + if (test_cases[i].setup != NULL) + test_cases[i].setup(); + + TEST(msgctl(*test_cases[i].queue_id, + test_cases[i].ipc_cmd, &qs_buf)); + + if (TEST_RETURN != 0 || TEST_ERRNO != IPC_RMID) { + tst_resm(TFAIL, + "msgctl() test %s failed with errno: " + "%d", test_cases[i].name, TEST_ERRNO); + } else { + tst_resm(TPASS, "msgctl() test %s succeeded", + test_cases[i].name); + } + } + } + + cleanup(); + + tst_exit(); +} + +void setup(void) +{ + tst_sig(NOFORK, DEF_HANDLER, cleanup); + + TEST_PAUSE; + + tst_tmpdir(); + + msgkey = getipckey(); +} + +static void setup1(void) +{ + msg_q = msgget(msgkey, IPC_CREAT | IPC_EXCL | MSG_RW); + if (msg_q == -1) + tst_brkm(TBROK, cleanup, "Can't create message queue"); +} + +void cleanup(void) +{ + tst_rmdir(); + + TEST_CLEANUP; +} -- 1.8.2.1 ------------------------------------------------------------------------------ Rapidly troubleshoot problems before they affect your business. Most IT organizations don't have a clear picture of how application performance affects their revenue. With AppDynamics, you get 100% visibility into your Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro! http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
