blob: fb99958866d8578d1ed50f6af3e3f5256aace34e [file] [log] [blame]
/*
* Copyright (c) 2002, Intel Corporation. All rights reserved.
* Created by: julie.n.fleischer REMOVE-THIS AT intel DOT com
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
* Test that clock_settime() cannot set the monotonic clock CLOCK_MONOTONIC,
* and will fail if invoked with clock CLOCK_MONOTONIC.
*
* The date chosen is Nov 12, 2002 ~11:13am.
*/
#include <stdio.h>
#include <time.h>
#include "posixtest.h"
#define TESTTIME 1037128358
int main(int argc, char *argv[])
{
#ifdef CLOCK_MONOTONIC
struct timespec tpset;
tpset.tv_sec = TESTTIME;
tpset.tv_nsec = 0;
if (clock_settime(CLOCK_MONOTONIC, &tpset) == -1) {
printf("Test PASSED\n");
return PTS_PASS;
} else {
printf("clock_settime() did not fail with CLOCK_MONOTONIC\n");
return PTS_FAIL;
}
return PTS_UNRESOLVED;
#else
printf("CLOCK_MONOTONIC not supported\n");
return PTS_UNSUPPORTED;
#endif
}