blob: 356a21e4d867770c6e57f6a9ad975099ae81e34a [file] [log] [blame]
robbiew0dc07652005-06-03 16:29:48 +00001/*
2 * Copyright (c) 2004, Bull SA. All rights reserved.
3 * Created by: Laurent.Vivier@bull.net
4 * This file is licensed under the GPL license. For the full content
Garrett Cooper2c282152010-12-16 00:55:50 -08005 * of this license, see the COPYING file at the top level of this
robbiew0dc07652005-06-03 16:29:48 +00006 * source tree.
7 */
8
9#define _XOPEN_SOURCE 600
10#include <stdio.h>
11#include <sys/types.h>
12#include <unistd.h>
13#include <sys/stat.h>
14#include <fcntl.h>
15#include <string.h>
16#include <errno.h>
17#include <stdlib.h>
18#include <aio.h>
19
20#include "posixtest.h"
21
22#define TNAME "aio_fsync/8-1.c"
23
Cyril Hrubis4ca2bbd2013-03-25 17:26:44 +010024int main(void)
robbiew0dc07652005-06-03 16:29:48 +000025{
26 char tmpfname[256];
27#define BUF_SIZE 111
28 char buf[BUF_SIZE];
29 int fd;
Wanlong Gao580f5832012-07-24 10:51:38 +080030 int ret;
robbiew0dc07652005-06-03 16:29:48 +000031 struct aiocb aiocb_write;
32 struct aiocb aiocb_fsync;
33
Garrett Cooper264074b2010-12-21 12:25:33 -080034 if (sysconf(_SC_ASYNCHRONOUS_IO) < 200112L)
Garrett Cooperec555782010-07-10 21:16:48 -070035 return PTS_UNSUPPORTED;
robbiew0dc07652005-06-03 16:29:48 +000036
Garrett Cooper2c282152010-12-16 00:55:50 -080037 snprintf(tmpfname, sizeof(tmpfname), "/tmp/pts_aio_fsync_8_1_%d",
Wanlong Gao074ada62012-12-07 09:43:49 +080038 getpid());
robbiew0dc07652005-06-03 16:29:48 +000039 unlink(tmpfname);
Wanlong Gao074ada62012-12-07 09:43:49 +080040 fd = open(tmpfname, O_CREAT | O_RDWR | O_EXCL, S_IRUSR | S_IWUSR);
Wanlong Gaoaa22e582012-07-24 14:44:02 +080041 if (fd == -1) {
Wanlong Gao074ada62012-12-07 09:43:49 +080042 printf(TNAME " Error at open(): %s\n", strerror(errno));
robbiew0dc07652005-06-03 16:29:48 +000043 exit(PTS_UNRESOLVED);
44 }
45
46 unlink(tmpfname);
47
48 memset(&aiocb_write, 0, sizeof(aiocb_write));
49 aiocb_write.aio_fildes = fd;
50 aiocb_write.aio_buf = buf;
51 aiocb_write.aio_nbytes = BUF_SIZE;
52
Wanlong Gaoaa22e582012-07-24 14:44:02 +080053 if (aio_write(&aiocb_write) == -1) {
Wanlong Gao074ada62012-12-07 09:43:49 +080054 printf(TNAME " Error at aio_write(): %s\n", strerror(errno));
robbiew0dc07652005-06-03 16:29:48 +000055 exit(PTS_FAIL);
56 }
57
Wanlong Gao580f5832012-07-24 10:51:38 +080058 do {
59 usleep(10000);
60 ret = aio_error(&aiocb_write);
61 } while (ret == EINPROGRESS);
62 if (ret < 0) {
63 printf(TNAME " Error at aio_error() : %s\n", strerror(ret));
64 exit(PTS_FAIL);
65 }
66
robbiew0dc07652005-06-03 16:29:48 +000067 memset(&aiocb_fsync, 0, sizeof(aiocb_fsync));
68 aiocb_fsync.aio_fildes = fd;
69 aiocb_fsync.aio_nbytes = -1;
70
Wanlong Gaoaa22e582012-07-24 14:44:02 +080071 if (aio_fsync(O_SYNC, &aiocb_fsync) != 0) {
robbiew0dc07652005-06-03 16:29:48 +000072 printf(TNAME " Error at aio_fsync(): %s\n", strerror(errno));
73 exit(PTS_FAIL);
74 }
75
Jan Stancek4aca18c2013-08-12 13:03:25 +020076 /* wait for aio_fsync */
77 do {
78 usleep(10000);
79 ret = aio_error(&aiocb_fsync);
80 } while (ret == EINPROGRESS);
81
82 ret = aio_return(&aiocb_fsync);
83 if (ret) {
84 printf(TNAME " Error at aio_return(): %d (%s)\n",
85 ret, strerror(errno));
86 close(fd);
87 return PTS_FAIL;
88 }
89
robbiew0dc07652005-06-03 16:29:48 +000090 close(fd);
Wanlong Gaoaa22e582012-07-24 14:44:02 +080091 printf("Test PASSED\n");
robbiew0dc07652005-06-03 16:29:48 +000092 return PTS_PASS;
Wanlong Gaoaa22e582012-07-24 14:44:02 +080093}