#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "test.h"
#define TEST(c) do { \
errno = 0; \
if (!(c)) \
t_error("%s failed (errno = %d)\n", #c, errno); \
} while(0)
void fdopen_1()
{
char tmp[] = "/data/local/tmp/testsuite-XXXXXX";
char foo[6];
int fd;
FILE *f;
TEST((fd = mkstemp(tmp)) > 2);
TEST(write(fd, "hello", 6)==6);
TEST(f = fdopen(fd, "rb"));
if (f) {
TEST(ftello(f)==6);
TEST(fseeko(f, 0, SEEK_SET)==0);
TEST(fgets(foo, sizeof foo, f));
if (strcmp(foo,"hello") != 0)
t_error("fgets read back: \"%s\"; wanted: \"hello\"\n", foo);
fclose(f);
}
if (fd > 2)
TEST(unlink(tmp) != -1);
}
void fdopen_2()
{
FILE *f = fdopen(-1, "w");
TEST(f == NULL);
printf("f == %p\n", f);
}
int main(void)
{
fdopen_1();
fdopen_2();
return t_status;
}