From eba2360222e8e8b9218942e25ef12664bc153f2e Mon Sep 17 00:00:00 2001 From: Filippo Arcidiacono Date: Mon, 2 May 2011 12:59:18 +0200 Subject: test_nptl: fix expected result for tst-clock2 test tst-clock2 should return 0 when _SC_THREAD_CPUTIME option isn't available, instead of treating it as an error. Further set the expected ret value as 0 avoiding to hide any real failures in case of THREAD_CPUTIME feature available. Signed-off-by: Filippo Arcidiacono Signed-off-by: Carmelo Amoroso --- test/nptl/tst-clock2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/nptl/tst-clock2.c') diff --git a/test/nptl/tst-clock2.c b/test/nptl/tst-clock2.c index 49a769bf4..bca40956e 100644 --- a/test/nptl/tst-clock2.c +++ b/test/nptl/tst-clock2.c @@ -62,7 +62,7 @@ do_test (void) if (sysconf (_SC_THREAD_CPUTIME) < 0) { puts ("_POSIX_THREAD_CPUTIME option not available"); - return 1; + return 0; } # endif -- cgit v1.2.3