[LTP] [PATCH 2/4] syscalls/modify_ldt: Refactor modify_ldt03 into new API
rbm@suse.com
rbm@suse.com
Mon Mar 24 21:45:34 CET 2025
From: Ricardo B. Marlière <rbm@suse.com>
Signed-off-by: Ricardo B. Marlière <rbm@suse.com>
---
.../kernel/syscalls/modify_ldt/modify_ldt03.c | 114 ++++-----------------
1 file changed, 20 insertions(+), 94 deletions(-)
diff --git a/testcases/kernel/syscalls/modify_ldt/modify_ldt03.c b/testcases/kernel/syscalls/modify_ldt/modify_ldt03.c
index 01730e0e14ae98a934e7b66c9058454506bbe064..6ecfa1e9f987a6fc349e551b4f0e175d14e62642 100644
--- a/testcases/kernel/syscalls/modify_ldt/modify_ldt03.c
+++ b/testcases/kernel/syscalls/modify_ldt/modify_ldt03.c
@@ -1,105 +1,31 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
/*
- * Copyright (c) 2014 Fujitsu Ltd.
- * Author: Zeng Linggang <zenglg.jy@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.
- */
-/*
- * DESCRIPTION
- * Basic test for modify_ldt(2) using func=0 argument.
+ * Copyright (c) 2014 Fujitsu Ltd. Zeng Linggang <zenglg.jy@cn.fujitsu.com>
+ * Copyright (c) 2025 SUSE LLC Ricardo B. Marlière <rbm@suse.com>
*/
-#include "config.h"
-#include "test.h"
-
-char *TCID = "modify_ldt03";
-int TST_TOTAL = 1;
-
-#if defined(__i386__) && defined(HAVE_MODIFY_LDT)
-
-#ifdef HAVE_ASM_LDT_H
-# include <asm/ldt.h>
-#endif
-extern int modify_ldt(int, void *, unsigned long);
-
-#include <asm/unistd.h>
-#include <string.h>
-#include <sys/wait.h>
-#include <errno.h>
-#include "safe_macros.h"
-
-#ifdef HAVE_STRUCT_USER_DESC
-# define SIZE sizeof(struct user_desc)
-#else
-# define SIZE 16
-#endif
-
-static char buf[SIZE];
-static void cleanup(void);
-static void setup(void);
-
-int main(int ac, char **av)
-{
- int lc;
-
- tst_parse_opts(ac, av, NULL, NULL);
-
- setup();
-
- for (lc = 0; TEST_LOOPING(lc); lc++) {
-
- tst_count = 0;
-
- TEST(modify_ldt(0, buf, SIZE));
+/*\
+ * Verify that a simple read (func=0) works when calling modify_ldt.
+ */
- if (TEST_RETURN < 0) {
- tst_resm(TFAIL | TTERRNO,
- "modify_ldt() failed with errno: %s",
- strerror(TEST_ERRNO));
- } else {
- tst_resm(TPASS, "modify_ldt() tested success");
- }
- }
+#include "tst_test.h"
- cleanup();
- tst_exit();
-}
+#ifdef __i386__
+#include "lapi/ldt.h"
-static void setup(void)
+void run(void)
{
- tst_sig(NOFORK, DEF_HANDLER, cleanup);
+ char buf[sizeof(struct user_desc)];
- TEST_PAUSE;
+ TEST(modify_ldt(0, buf, sizeof(buf)));
+ TST_EXP_EQ_LI(TST_RET, 0);
}
-static void cleanup(void)
-{
-}
+static struct tst_test test = {
+ .test_all = run,
+};
-#elif HAVE_MODIFY_LDT
-
-int main(void)
-{
- tst_brkm(TCONF,
- NULL, "modify_ldt is available but not tested on the platform than "
- "__i386__");
-}
-
-#else /* if defined(__i386__) */
-
-int main(void)
-{
- tst_resm(TINFO, "modify_ldt03 test only for ix86");
- tst_exit();
-}
-
-#endif /* if defined(__i386__) */
+#else
+TST_TEST_TCONF("Test supported only on i386");
+#endif /* __i386__ */
--
2.49.0
More information about the ltp
mailing list