summaryrefslogtreecommitdiff
path: root/test/stdlib/test-mkostemp-O_CLOEXEC.c
blob: 5652086bde52fc201d60aabccb948fb11fd95442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#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>

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);
}