diff mbox series

lgetxattr02: Convert docs to docparse

Message ID 20240823080337.199654-1-maxj.fnst@fujitsu.com
State Accepted
Headers show
Series lgetxattr02: Convert docs to docparse | expand

Commit Message

Ma Xinjian Aug. 23, 2024, 8:03 a.m. UTC
Signed-off-by: Ma Xinjian <maxj.fnst@fujitsu.com>
---
 .../kernel/syscalls/lgetxattr/lgetxattr02.c   | 27 ++++++++-----------
 1 file changed, 11 insertions(+), 16 deletions(-)

Comments

Petr Vorel Aug. 23, 2024, 11:51 a.m. UTC | #1
Hi Ma,

...
>  // SPDX-License-Identifier: GPL-2.0-or-later
>  /*
> -* Copyright (c) 2016 Fujitsu Ltd.
> -* Author: Jinbao Huang <huangjb.jy@cn.fujitsu.com>
> -*/
> + * Copyright (c) 2016 Fujitsu Ltd.
> + * Author: Jinbao Huang <huangjb.jy@cn.fujitsu.com>
> + */

>  /*
This needs to be '/*\' otherwise the comment is ignored. I fixed it and merged,
thanks!

Kind regards,
Petr
diff mbox series

Patch

diff --git a/testcases/kernel/syscalls/lgetxattr/lgetxattr02.c b/testcases/kernel/syscalls/lgetxattr/lgetxattr02.c
index 183239a26..57a422953 100644
--- a/testcases/kernel/syscalls/lgetxattr/lgetxattr02.c
+++ b/testcases/kernel/syscalls/lgetxattr/lgetxattr02.c
@@ -1,23 +1,18 @@ 
 // SPDX-License-Identifier: GPL-2.0-or-later
 /*
-* Copyright (c) 2016 Fujitsu Ltd.
-* Author: Jinbao Huang <huangjb.jy@cn.fujitsu.com>
-*/
+ * Copyright (c) 2016 Fujitsu Ltd.
+ * Author: Jinbao Huang <huangjb.jy@cn.fujitsu.com>
+ */
 
 /*
-* Test Name: lgetxattr02
-*
-* Description:
-* 1) lgetxattr(2) fails if the named attribute does not exist.
-* 2) lgetxattr(2) fails if the size of the value buffer is too small
-*    to hold the result.
-* 3) lgetxattr(2) fails when attemptes to read from a invalid address.
-*
-* Expected Result:
-* 1) lgetxattr(2) should return -1 and set errno to ENODATA.
-* 2) lgetxattr(2) should return -1 and set errno to ERANGE.
-* 3) lgetxattr(2) should return -1 and set errno to EFAULT.
-*/
+ * [Description]
+ *
+ * Verify that, lgetxattr(2) returns -1 and sets errno to
+ *
+ * 1. ENODATA if the named attribute does not exist.
+ * 2. ERANGE if the size of the value buffer is too small to hold the result.
+ * 3. EFAULT when reading from an invalid address.
+ */
 
 #include "config.h"
 #include <errno.h>