public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH v3] acct01: fix TBROK to TCONF if acct not implemented
@ 2013-11-03  8:14 Honggyu Kim
  2013-11-04  1:26 ` Wanlong Gao
  0 siblings, 1 reply; 3+ messages in thread
From: Honggyu Kim @ 2013-11-03  8:14 UTC (permalink / raw)
  To: ltp-list

acct system call is avaliable only when the kernel option is on.
When it fails, acct returns -1 and sets errno correspondingly.
ENOSYS is set when the system call is not implemented.
Currently, ENOSYS is not checked when the TEST_FILE5 argument is passed.
It just goes to TBROK regardless of the implementation in kernel.
This patch modifies to check errno ENOSYS, and marks as TCONF in that case.

Signed-off-by: Honggyu Kim <nexus226@gmail.com>
---
 testcases/kernel/syscalls/acct/acct01.c |   11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/testcases/kernel/syscalls/acct/acct01.c b/testcases/kernel/syscalls/acct/acct01.c
index c38d4db..0fe973b 100644
--- a/testcases/kernel/syscalls/acct/acct01.c
+++ b/testcases/kernel/syscalls/acct/acct01.c
@@ -103,8 +103,15 @@ static void setup(void)
 	fd = SAFE_CREAT(cleanup, TEST_FILE5, 0777);
 	SAFE_CLOSE(cleanup, fd);
 
-	if (acct(TEST_FILE5) == -1)
-		tst_brkm(TBROK | TERRNO, cleanup, "acct failed unexpectedly");
+	if (acct(TEST_FILE5) == -1) {
+		if (errno == ENOSYS) {
+			tst_brkm(TCONF, cleanup,
+				 "BSD process accounting is not configured in "
+				 "this kernel");
+		} else {
+			tst_brkm(TBROK | TERRNO, cleanup, "acct failed unexpectedly");
+		}
+	}
 
 	/* turn off acct, so we are in a known state */
 	if (acct(NULL) == -1) {
-- 
1.7.9.5


------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [LTP] [PATCH v3] acct01: fix TBROK to TCONF if acct not implemented
  2013-11-03  8:14 [LTP] [PATCH v3] acct01: fix TBROK to TCONF if acct not implemented Honggyu Kim
@ 2013-11-04  1:26 ` Wanlong Gao
       [not found]   ` <CAEcr6y0OmaAyEiTwicvpF7cuHx_GNC+QrU5wPmAwD-1SGwZLRw@mail.gmail.com>
  0 siblings, 1 reply; 3+ messages in thread
From: Wanlong Gao @ 2013-11-04  1:26 UTC (permalink / raw)
  To: Honggyu Kim; +Cc: ltp-list

On 11/03/2013 04:14 PM, Honggyu Kim wrote:
> acct system call is avaliable only when the kernel option is on.
> When it fails, acct returns -1 and sets errno correspondingly.
> ENOSYS is set when the system call is not implemented.
> Currently, ENOSYS is not checked when the TEST_FILE5 argument is passed.
> It just goes to TBROK regardless of the implementation in kernel.
> This patch modifies to check errno ENOSYS, and marks as TCONF in that case.

What's changed from V2 to V3?

Thanks,
Wanlong Gao

> 
> Signed-off-by: Honggyu Kim <nexus226@gmail.com>
> ---
>  testcases/kernel/syscalls/acct/acct01.c |   11 +++++++++--
>  1 file changed, 9 insertions(+), 2 deletions(-)
> 
> diff --git a/testcases/kernel/syscalls/acct/acct01.c b/testcases/kernel/syscalls/acct/acct01.c
> index c38d4db..0fe973b 100644
> --- a/testcases/kernel/syscalls/acct/acct01.c
> +++ b/testcases/kernel/syscalls/acct/acct01.c
> @@ -103,8 +103,15 @@ static void setup(void)
>  	fd = SAFE_CREAT(cleanup, TEST_FILE5, 0777);
>  	SAFE_CLOSE(cleanup, fd);
>  
> -	if (acct(TEST_FILE5) == -1)
> -		tst_brkm(TBROK | TERRNO, cleanup, "acct failed unexpectedly");
> +	if (acct(TEST_FILE5) == -1) {
> +		if (errno == ENOSYS) {
> +			tst_brkm(TCONF, cleanup,
> +				 "BSD process accounting is not configured in "
> +				 "this kernel");
> +		} else {
> +			tst_brkm(TBROK | TERRNO, cleanup, "acct failed unexpectedly");
> +		}
> +	}
>  
>  	/* turn off acct, so we are in a known state */
>  	if (acct(NULL) == -1) {
> 


------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [LTP] [PATCH v3] acct01: fix TBROK to TCONF if acct not implemented
       [not found]   ` <CAEcr6y0OmaAyEiTwicvpF7cuHx_GNC+QrU5wPmAwD-1SGwZLRw@mail.gmail.com>
@ 2013-11-04  2:39     ` Wanlong Gao
  0 siblings, 0 replies; 3+ messages in thread
From: Wanlong Gao @ 2013-11-04  2:39 UTC (permalink / raw)
  To: Honggyu Kim; +Cc: LTP List

On 11/04/2013 10:15 AM, Honggyu Kim wrote:
> I just made a mistake on the commit message. No change was made in the source code.

Applied, thank you.

Wanlong Gao

> 
> Thank you for your reply.
> 
> Honggyu Kim
> 


------------------------------------------------------------------------------
Android is increasing in popularity, but the open development platform that
developers love is also attractive to malware creators. Download this white
paper to learn more about secure code signing practices that can help keep
Android apps secure.
http://pubads.g.doubleclick.net/gampad/clk?id=65839951&iu=/4140/ostg.clktrk
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-11-04  2:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-03  8:14 [LTP] [PATCH v3] acct01: fix TBROK to TCONF if acct not implemented Honggyu Kim
2013-11-04  1:26 ` Wanlong Gao
     [not found]   ` <CAEcr6y0OmaAyEiTwicvpF7cuHx_GNC+QrU5wPmAwD-1SGwZLRw@mail.gmail.com>
2013-11-04  2:39     ` Wanlong Gao

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox