* [LTP] [PATCH 6/7] syscalls/clone06: Convert to new API
@ 2021-08-13 7:27 zhanglianjie
2021-08-25 14:43 ` Cyril Hrubis
0 siblings, 1 reply; 2+ messages in thread
From: zhanglianjie @ 2021-08-13 7:27 UTC (permalink / raw)
To: ltp
Signed-off-by: zhanglianjie <zhanglianjie@uniontech.com>
diff --git a/testcases/kernel/syscalls/clone/clone06.c b/testcases/kernel/syscalls/clone/clone06.c
index 99e7f3864..5ed3bf897 100644
--- a/testcases/kernel/syscalls/clone/clone06.c
+++ b/testcases/kernel/syscalls/clone/clone06.c
@@ -1,35 +1,18 @@
+// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) Wipro Technologies Ltd, 2002. All Rights Reserved.
* Copyright (c) 2012 Wanlong Gao <gaowanlong@cn.fujitsu.com>
- *
- * 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; if not, write the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
*/
-/*
- * Test to verify inheritance of environment variables by child.
+/*\
+ * [Description]
+ * Test to verify inheritance of environment variables by child.
*/
-#if defined UCLINUX && !__THROW
-/* workaround for libc bug */
-#define __THROW
-#endif
-
-#include <errno.h>
+#include <stdio.h>
+#include <stdlib.h>
#include <sched.h>
-#include <sys/wait.h>
-#include <fcntl.h>
-#include "test.h"
+#include "tst_test.h"
#include "clone_platform.h"
#define MAX_LINE_LENGTH 256
@@ -39,102 +22,56 @@ static void cleanup(void);
static int child_environ();
static int pfd[2];
+static void *child_stack;
-char *TCID = "clone06";
-int TST_TOTAL = 1;
-
-int main(int ac, char **av)
+static int child_environ(void *arg LTP_ATTRIBUTE_UNUSED)
{
+ char var[MAX_LINE_LENGTH];
- int lc, status;
- void *child_stack;
- char *parent_env;
- char buff[MAX_LINE_LENGTH];
-
- tst_parse_opts(ac, av, NULL, NULL);
-
- setup();
-
- child_stack = malloc(CHILD_STACK_SIZE);
- if (child_stack == NULL)
- tst_brkm(TBROK, cleanup, "Cannot allocate stack for child");
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
- tst_count = 0;
-
- if ((pipe(pfd)) == -1)
- tst_brkm(TBROK | TERRNO, cleanup, "pipe() failed");
-
- TEST(ltp_clone(SIGCHLD, child_environ, NULL, CHILD_STACK_SIZE,
- child_stack));
-
- if (TEST_RETURN == -1)
- tst_brkm(TFAIL | TTERRNO, cleanup, "clone failed");
-
- /* close write end from parent */
- if ((close(pfd[1])) == -1)
- tst_resm(TWARN | TERRNO, "close(pfd[1]) failed");
-
- /* Read env var from read end */
- if ((read(pfd[0], buff, sizeof(buff))) == -1)
- tst_brkm(TBROK | TERRNO, cleanup,
- "read from pipe failed");
+ sprintf(var, "%s", getenv("TERM") ? : "");
- /* Close read end from parent */
- if ((close(pfd[0])) == -1)
- tst_resm(TWARN | TERRNO, "close(pfd[0]) failed");
+ SAFE_CLOSE(pfd[0]);
+ SAFE_WRITE(1, pfd[1], var, sizeof(var));
+ SAFE_CLOSE(pfd[1]);
+
+ exit(0);
+}
- parent_env = getenv("TERM") ? : "";
+static void verify_clone(void)
+{
+ char *parent_env;
+ char buff[MAX_LINE_LENGTH];
- if ((strcmp(buff, parent_env)) == 0)
- tst_resm(TPASS, "Test Passed");
- else
- tst_resm(TFAIL, "Test Failed");
+ TST_EXP_POSITIVE(ltp_clone(SIGCHLD, child_environ, NULL, CHILD_STACK_SIZE,
+ child_stack));
- if ((wait(&status)) == -1)
- tst_brkm(TBROK | TERRNO, cleanup,
- "wait failed, status: %d", status);
- }
+ tst_reap_children();
- free(child_stack);
+ if (!TST_PASS)
+ return;
+
+ SAFE_CLOSE(pfd[1]);
+ SAFE_READ(1, pfd[0], buff, sizeof(buff));
+ SAFE_CLOSE(pfd[0]);
- cleanup();
- tst_exit();
+ parent_env = getenv("TERM") ? : "";
+ TST_EXP_PASS(strcmp(buff, parent_env),
+ "verify environment variables by child");
}
static void setup(void)
{
- tst_sig(FORK, DEF_HANDLER, cleanup);
- TEST_PAUSE;
+ child_stack = SAFE_MALLOC(CHILD_STACK_SIZE);
+ SAFE_PIPE(pfd);
}
static void cleanup(void)
{
+ free(child_stack);
}
-/*
- * Function executed by child.
- * Gets the value for environment variable,TERM &
- * writes it to a pipe.
- */
-static int child_environ(void)
-{
-
- char var[MAX_LINE_LENGTH];
-
- /* Close read end from child */
- if ((close(pfd[0])) == -1)
- tst_brkm(TBROK | TERRNO, cleanup, "close(pfd[0]) failed");
-
- if ((sprintf(var, "%s", getenv("TERM") ? : "")) < 0)
- tst_resm(TWARN | TERRNO, "sprintf() failed");
-
- if ((write(pfd[1], var, MAX_LINE_LENGTH)) == -1)
- tst_resm(TWARN | TERRNO, "write to pipe failed");
-
- /* Close write end of pipe from child */
- if ((close(pfd[1])) == -1)
- tst_resm(TWARN | TERRNO, "close(pfd[1]) failed");
-
- exit(0);
-}
+static struct tst_test test = {
+ .setup = setup,
+ .test_all = verify_clone,
+ .cleanup = cleanup,
+};
\ No newline@end of file
--
2.20.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* [LTP] [PATCH 6/7] syscalls/clone06: Convert to new API
2021-08-13 7:27 [LTP] [PATCH 6/7] syscalls/clone06: Convert to new API zhanglianjie
@ 2021-08-25 14:43 ` Cyril Hrubis
0 siblings, 0 replies; 2+ messages in thread
From: Cyril Hrubis @ 2021-08-25 14:43 UTC (permalink / raw)
To: ltp
Hi!
> + if (!TST_PASS)
> + return;
> +
> + SAFE_CLOSE(pfd[1]);
> + SAFE_READ(1, pfd[0], buff, sizeof(buff));
> + SAFE_CLOSE(pfd[0]);
>
> - cleanup();
> - tst_exit();
> + parent_env = getenv("TERM") ? : "";
> + TST_EXP_PASS(strcmp(buff, parent_env),
> + "verify environment variables by child");
This is misuse as well. I guess TST_EXP_VAL() could be useable in this
case as well.
> }
>
> static void setup(void)
> {
> - tst_sig(FORK, DEF_HANDLER, cleanup);
> - TEST_PAUSE;
> + child_stack = SAFE_MALLOC(CHILD_STACK_SIZE);
> + SAFE_PIPE(pfd);
Here as well it would be easier to use a shared memory as IPC.
--
Cyril Hrubis
chrubis@suse.cz
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-08-25 14:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-13 7:27 [LTP] [PATCH 6/7] syscalls/clone06: Convert to new API zhanglianjie
2021-08-25 14:43 ` Cyril Hrubis
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox