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/signal/tst-sigset.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/signal/tst-sigset.c')
-rw-r--r-- | test/signal/tst-sigset.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/test/signal/tst-sigset.c b/test/signal/tst-sigset.c deleted file mode 100644 index bc1b05764..000000000 --- a/test/signal/tst-sigset.c +++ /dev/null @@ -1,45 +0,0 @@ -/* Test sig*set functions. */ - -#include <signal.h> -#include <string.h> -#include <errno.h> -#include <stdio.h> - -#define TEST_FUNCTION do_test () -static int -do_test (void) -{ - int result = 0; - int sig = -1; - -#define TRY(call) \ - if (call) \ - { \ - printf ("%s (sig = %d): %s\n", #call, sig, strerror(errno)); \ - result = 1; \ - } \ - else - - - sigset_t set; - TRY (sigemptyset (&set) != 0); - -#ifdef SIGRTMAX - int max_sig = SIGRTMAX; -#else - int max_sig = NSIG - 1; -#endif - - for (sig = 1; sig <= max_sig; ++sig) - { - TRY (sigismember (&set, sig) != 0); - TRY (sigaddset (&set, sig) != 0); - TRY (sigismember (&set, sig) == 0); - TRY (sigdelset (&set, sig) != 0); - TRY (sigismember (&set, sig) != 0); - } - - return result; -} - -#include "../test-skeleton.c" |