summaryrefslogtreecommitdiff
path: root/test/stdlib/test-mkostemp-child.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/stdlib/test-mkostemp-child.c')
-rw-r--r--test/stdlib/test-mkostemp-child.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/stdlib/test-mkostemp-child.c b/test/stdlib/test-mkostemp-child.c
deleted file mode 100644
index 708bd80a1..000000000
--- a/test/stdlib/test-mkostemp-child.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-
-int main(int argc, char *argv[]) {
- int fd;
-
- /* This file gets built and run as a test, but its
- * really just a helper for test-mkostemp-O_CLOEXEC.c.
- * So, we'll always return succcess.
- */
- if(argc != 2)
- exit(EXIT_SUCCESS);
-
- sscanf(argv[1], "%d", &fd);
-
- if(write(fd, "test\0", 5) == -1)
- ; /* Don't Panic! Failure is okay here. */
-
- close(fd);
- exit(EXIT_SUCCESS);
-}