blob: 60b35839f4c9c0e4c2a8295274fd81c7eeab15aa [file] [log] [blame]
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*
* Test that sched_get_priority_min() returns the appropriate minimum value on
* success for SCHED_OTHER policy.
*/
#include <stdio.h>
#include <sched.h>
#include <errno.h>
#include "posixtest.h"
int main(int argc, char **argv)
{
int result = -1;
result = sched_get_priority_min(SCHED_OTHER);
if (result != -1 && errno == 0) {
printf("The minimum priority for policy SCHED_OTHER is %i.\n",
result);
printf("Test PASSED\n");
return PTS_PASS;
} else {
perror("An error occurs");
return PTS_FAIL;
}
printf("This code should not be executed.\n");
return PTS_UNRESOLVED;
}