/* * 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_max() returns -1 on failure. */ #include #include #include #include "posixtest.h" int main(int argc, char **argv) { int result = -1; result = sched_get_priority_max(-1); if(result == -1 && errno == EINVAL ) { printf("Test PASSED\n"); return PTS_PASS; } if (result != -1) { printf("did no returned -1.\n"); return PTS_FAIL; } if (errno != EINVAL) { perror("error is not EINVAL"); return PTS_FAIL; } else { printf("Unresolved test error\n"); return PTS_UNRESOLVED; } printf("This code should not be executed.\n"); return PTS_UNRESOLVED; }