blob: f4e4c854ba98b3794e467f81ced99a50e46c5298 [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_max_repl member of the param argument represent the
* maximum number of replenishments that are allowed to be pending
* simultaneously for the process scheduled under the SCHED_SPORADIC policy.
*
* @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
}