summaryrefslogtreecommitdiff
path: root/test/stdlib/test-mkostemp-O_CLOEXEC.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:29:21 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:31:55 +0200
commit99ef2719fb3d703fe38c4113cd7f5adec516dd3a (patch)
tree2c1f77cb41b60ccbf8faa77a3640491a3546b546 /test/stdlib/test-mkostemp-O_CLOEXEC.c
parent543308f6c46cf2edf8a524bc9c631e472570fe72 (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/stdlib/test-mkostemp-O_CLOEXEC.c')
-rw-r--r--test/stdlib/test-mkostemp-O_CLOEXEC.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/test/stdlib/test-mkostemp-O_CLOEXEC.c b/test/stdlib/test-mkostemp-O_CLOEXEC.c
deleted file mode 100644
index 9ff229af1..000000000
--- a/test/stdlib/test-mkostemp-O_CLOEXEC.c
+++ /dev/null
@@ -1,45 +0,0 @@
-#define _XOPEN_SOURCE_EXTENDED
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <sys/wait.h>
-#include <errno.h>
-
-#if !defined __ARCH_USE_MMU__
-# define fork vfork
-#endif
-
-int main(int argc, char *argv[]) {
- int fd, status;
- char buff[5];
- char template[] = "/tmp/test-mkostemp.XXXXXX";
-
- fd = mkostemp(template, O_CLOEXEC);
- unlink(template);
-
- snprintf(buff, 5, "%d", fd);
-
- if(!fork())
- if(execl("./test-mkostemp-child", "test-mkostemp-child", buff, NULL) == -1)
- exit(EXIT_FAILURE);
-
- wait(&status);
-
- memset(buff, 0, 5);
- lseek(fd, 0, SEEK_SET);
- errno = 0;
- if(read(fd, buff, 5) == -1)
- exit(EXIT_FAILURE);
-
- if(!strncmp(buff, "test", 5))
- exit(EXIT_FAILURE);
- else
- exit(EXIT_SUCCESS);
-
- close(fd);
- exit(EXIT_SUCCESS);
-}