diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-28 20:29:21 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-28 20:31:55 +0200 |
commit | 99ef2719fb3d703fe38c4113cd7f5adec516dd3a (patch) | |
tree | 2c1f77cb41b60ccbf8faa77a3640491a3546b546 /test/nptl/tst-timer5.c | |
parent | 543308f6c46cf2edf8a524bc9c631e472570fe72 (diff) |
test: remove test suite
The test suite is now a developed in a separate git repository.
See here:
http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git
The test suite should be just like every other software compiled
with the cross-toolchain. In the past strange problems where found
when the test suite got build in the toolchain creation step.
Diffstat (limited to 'test/nptl/tst-timer5.c')
-rw-r--r-- | test/nptl/tst-timer5.c | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/test/nptl/tst-timer5.c b/test/nptl/tst-timer5.c deleted file mode 100644 index 6466c8efc..000000000 --- a/test/nptl/tst-timer5.c +++ /dev/null @@ -1,38 +0,0 @@ -/* Timer test using the monotonic clock. */ - -#include <time.h> -#include <unistd.h> - -#if defined CLOCK_MONOTONIC && defined _POSIX_MONOTONIC_CLOCK - -# define TEST_CLOCK CLOCK_MONOTONIC -# define TEST_CLOCK_MISSING(clock) \ - (setup_test () ? "CLOCK_MONOTONIC" : NULL) - -# include <stdio.h> - -static int -setup_test (void) -{ - if (sysconf (_SC_MONOTONIC_CLOCK) <= 0) - return 1; - - /* The user-level timers implementation doesn't support CLOCK_MONOTONIC, - even though sysconf claims it will. */ - timer_t t; - if (timer_create (TEST_CLOCK, NULL, &t) != 0) - { - printf ("timer_create: %m\n"); - return 1; - } - timer_delete (t); - - return 0; -} - -# include "tst-timer4.c" - -#else -# define TEST_FUNCTION 0 -# include "../test-skeleton.c" -#endif |