2003-03-19  Ulrich Drepper  <drepper@redhat.com>

	* posix/tst-nice.c (do_test): Remove invalid of return value.
	Don't run test if initial level != 0.
This commit is contained in:
Ulrich Drepper 2003-03-19 23:03:56 +00:00
parent cb8ed9413e
commit 8c937b8439
2 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-03-19 Ulrich Drepper <drepper@redhat.com>
* posix/tst-nice.c (do_test): Remove invalid of return value.
Don't run test if initial level != 0.
2003-03-19 Amos Waterland <apw@us.ibm.com>
* posix/tst-nice.c: New file.

View File

@ -25,8 +25,9 @@
static int
do_test (void)
{
int ret, expected;
int ret;
const int incr = 10;
const int expected = 10;
/* Discover current nice value. */
errno = 0;
@ -36,7 +37,11 @@ do_test (void)
printf ("break: nice(%d) return: %d, errno: %d\n", 0, ret, errno);
return 1;
}
expected = ret + incr;
/* We cannot generally add up the increments since the values are
capped. So we run the test only if we initially run at level
0. */
if (ret != 0)
return 0;
/* Nice ourselves up. */
errno = 0;
@ -49,7 +54,7 @@ do_test (void)
/* Check for return value being zero when it shouldn't. Cannot simply
check for expected value since nice values are capped at 2^n-1. */
if (ret == 0 && ret != expected)
if (ret != expected)
{
printf ("fail: retval (%d) of nice(%d) != %d\n", ret, incr, expected);
return 1;