* [LTP] [PATCH v2] kcmp: Convert docs to docparse
@ 2024-08-27 6:11 Ma Xinjian via ltp
2024-11-12 23:06 ` Petr Vorel
0 siblings, 1 reply; 2+ messages in thread
From: Ma Xinjian via ltp @ 2024-08-27 6:11 UTC (permalink / raw)
To: ltp, pvorel
+ update copyright
Signed-off-by: Ma Xinjian <maxj.fnst@fujitsu.com>
---
testcases/kernel/syscalls/kcmp/kcmp01.c | 16 ++++++++++------
testcases/kernel/syscalls/kcmp/kcmp02.c | 20 ++++++++++++--------
testcases/kernel/syscalls/kcmp/kcmp03.c | 17 +++++++++--------
3 files changed, 31 insertions(+), 22 deletions(-)
diff --git a/testcases/kernel/syscalls/kcmp/kcmp01.c b/testcases/kernel/syscalls/kcmp/kcmp01.c
index 0e7cc7a22..c91c34d44 100644
--- a/testcases/kernel/syscalls/kcmp/kcmp01.c
+++ b/testcases/kernel/syscalls/kcmp/kcmp01.c
@@ -1,14 +1,18 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2015 Cedric Hnyda <chnyda@suse.com>
+ * Copyright (c) Linux Test Project, 2015-2024
*/
- /* Description:
- * Verify that:
- * 1) kcmp returns 0 with two process and two fd refering to the
- * same open file
- * 2) kcmp doesn't return 0 with two process and two fd not
- * refering to the same open file
+/*\
+ * [Description]
+ *
+ * Verify that
+ *
+ * 1. kcmp() returns 0 with two process and two fd refering to the same
+ * open file
+ * 2. kcmp() doesn't return 0 with two process and two fd not refering
+ * to the same open file
*/
#define _GNU_SOURCE
diff --git a/testcases/kernel/syscalls/kcmp/kcmp02.c b/testcases/kernel/syscalls/kcmp/kcmp02.c
index 076b4a723..0e4a0d22f 100644
--- a/testcases/kernel/syscalls/kcmp/kcmp02.c
+++ b/testcases/kernel/syscalls/kcmp/kcmp02.c
@@ -1,16 +1,20 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2015 Cedric Hnyda <chnyda@suse.com>
+ * Copyright (c) Linux Test Project, 2015-2024
*/
- /* Description:
- * Verify that:
- * 1) kcmp fails with bad pid
- * 2) kcmp fails with invalid flag
- * 3) kcmp fails with invalid flag
- * 4) kcmp fails with invalid flag
- * 5) kcmp fails with invalid flag
- * 6) kcmp fails with invalid fd
+/*\
+ * [Description]
+ *
+ * Verify that, kcmp() returns -1 and sets errno to
+ *
+ * 1. ESRCH if pid does not exist
+ * 2. EINVAL if type is invalid (it's not in man page)
+ * 3. EINVAL if type is invalid (it's a negative number, -1)
+ * 4. EINVAL if type is invalid (it's a negative number, the smallest integer)
+ * 5. EINVAL if type is invalid (it's too high, the largest integer)
+ * 6. EBADF if fd is invalid
*/
#define _GNU_SOURCE
diff --git a/testcases/kernel/syscalls/kcmp/kcmp03.c b/testcases/kernel/syscalls/kcmp/kcmp03.c
index 7af5cb150..4ae6e0295 100644
--- a/testcases/kernel/syscalls/kcmp/kcmp03.c
+++ b/testcases/kernel/syscalls/kcmp/kcmp03.c
@@ -1,17 +1,18 @@
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright (c) 2016 Xiao Yang <yangx.jy@cn.fujitsu.com>
+ * Copyright (c) Linux Test Project, 2016-2024
*/
- /*
- * Testname: kcmp03.c
+/*\
+ * [Description]
*
- * Description:
- * 1) kcmp() returns 0 if the processes share the same file system information.
- * 2) kcmp() returns 0 if the processes share I/O context.
- * 3) kcmp() returns 0 if the processes share the same list of System V
- * semaphore undo operations.
- * 4) kcmp() returns 0 if the processes share the same address space.
+ * Verify that, kcmp() returns 0 if the processes
+ *
+ * 1. share the same file system information
+ * 2. share I/O context
+ * 3. share the same list of System V semaphore undo operations
+ * 4. share the same address space
*/
#define _GNU_SOURCE
--
2.42.0
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [LTP] [PATCH v2] kcmp: Convert docs to docparse
2024-08-27 6:11 [LTP] [PATCH v2] kcmp: Convert docs to docparse Ma Xinjian via ltp
@ 2024-11-12 23:06 ` Petr Vorel
0 siblings, 0 replies; 2+ messages in thread
From: Petr Vorel @ 2024-11-12 23:06 UTC (permalink / raw)
To: Ma Xinjian; +Cc: ltp
Hi Ma Xinjian,
...
> diff --git a/testcases/kernel/syscalls/kcmp/kcmp02.c b/testcases/kernel/syscalls/kcmp/kcmp02.c
> +/*\
> + * [Description]
> + *
> + * Verify that, kcmp() returns -1 and sets errno to
> + *
> + * 1. ESRCH if pid does not exist
> + * 2. EINVAL if type is invalid (it's not in man page)
> + * 3. EINVAL if type is invalid (it's a negative number, -1)
> + * 4. EINVAL if type is invalid (it's a negative number, the smallest integer)
> + * 5. EINVAL if type is invalid (it's too high, the largest integer)
> + * 6. EBADF if fd is invalid
I slightly changed this and merged.
IMHO it's better to use "file descriptor" then just fd (although it's obvious,
let's be more formal). OTOH we can use commonly used constants (INT_MAX, ...)
instead of "the largest integer").
Thanks!
Kind regards,
Petr
--
Mailing list info: https://lists.linux.it/listinfo/ltp
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-11-12 23:07 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-27 6:11 [LTP] [PATCH v2] kcmp: Convert docs to docparse Ma Xinjian via ltp
2024-11-12 23:06 ` Petr Vorel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox