Additionally pull up the following, requested by maya in ticket #892:

src/tests/lib/librt/t_sched.c	1.6

fix priority tests for SCHED_OTHER
This commit is contained in:
martin 2018-07-10 15:06:25 +00:00
parent 24b24f6056
commit 7cd84039a5
1 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_sched.c,v 1.5 2012/03/25 04:11:42 christos Exp $ */
/* $NetBSD: t_sched.c,v 1.5.24.1 2018/07/10 15:06:25 martin Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@ -29,8 +29,9 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: t_sched.c,v 1.5 2012/03/25 04:11:42 christos Exp $");
__RCSID("$NetBSD: t_sched.c,v 1.5.24.1 2018/07/10 15:06:25 martin Exp $");
#include <sys/param.h> /* PRI_NONE */
#include <sched.h>
#include <limits.h>
#include <unistd.h>
@ -94,10 +95,14 @@ ATF_TC_BODY(sched_priority, tc)
pmax = sched_get_priority_max(pol[i]);
pmin = sched_get_priority_min(pol[i]);
ATF_REQUIRE(pmax != -1);
ATF_REQUIRE(pmin != -1);
ATF_REQUIRE(pmax > pmin);
if (pol[i] == SCHED_OTHER) {
ATF_REQUIRE(pmax == PRI_NONE);
ATF_REQUIRE(pmin == PRI_NONE);
} else {
ATF_REQUIRE(pmax != -1);
ATF_REQUIRE(pmin != -1);
ATF_REQUIRE(pmax > pmin);
}
}
}