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:
parent
24b24f6056
commit
7cd84039a5
|
@ -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.
|
* Copyright (c) 2011 The NetBSD Foundation, Inc.
|
||||||
|
@ -29,8 +29,9 @@
|
||||||
* POSSIBILITY OF SUCH DAMAGE.
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
#include <sys/cdefs.h>
|
#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 <sched.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
@ -94,11 +95,15 @@ ATF_TC_BODY(sched_priority, tc)
|
||||||
|
|
||||||
pmax = sched_get_priority_max(pol[i]);
|
pmax = sched_get_priority_max(pol[i]);
|
||||||
pmin = sched_get_priority_min(pol[i]);
|
pmin = sched_get_priority_min(pol[i]);
|
||||||
|
if (pol[i] == SCHED_OTHER) {
|
||||||
|
ATF_REQUIRE(pmax == PRI_NONE);
|
||||||
|
ATF_REQUIRE(pmin == PRI_NONE);
|
||||||
|
} else {
|
||||||
ATF_REQUIRE(pmax != -1);
|
ATF_REQUIRE(pmax != -1);
|
||||||
ATF_REQUIRE(pmin != -1);
|
ATF_REQUIRE(pmin != -1);
|
||||||
ATF_REQUIRE(pmax > pmin);
|
ATF_REQUIRE(pmax > pmin);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in New Issue