blob: c245fab8517074831dfcdabbe00aa4b1a063246a [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 the sched_ss_low_priority, sched_ss_repl_period, and
* sched_ss_init_budget members of the param argument have no effect on the
* scheduling behavior if the scheduling policy of the target process is either
* SCHED_FIFO or SCHED_RR.
*
* @pt:SS
*/
#include <stdlib.h>
#include <unistd.h>
#include "posixtest.h"
int main() {
#if defined(_POSIX_SPORADIC_SERVER)&&(_POSIX_SPORADIC_SERVER != -1)
exit(PTS_UNSUPPORTED);
#else
exit(PTS_UNTESTED);
#endif
}