blob: 89d5271b8a4eaf41777346f0a2e4ec6fbaa4fd38 [file] [log] [blame]
/*
* Copyright (c) 2004, Bull SA. All rights reserved.
* Created by: Laurent.Vivier@bull.net
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
*/
/*
* assertion:
*
* aio_return() shall return the status associated with aiocbp.
*
* method:
*
* - open a file
* - fill in an aiocb for writing
* - call aio_write using this aiocb
* - call aio_return to get the aiocb status (number of bytes written)
*
*/
#define _XOPEN_SOURCE 600
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <aio.h>
#include "posixtest.h"
#define TNAME "aio_return/1-1.c"
#define BUF_SIZE 111
int main(void)
{
char tmpfname[256];
char buf[BUF_SIZE];
struct aiocb aiocb;
int fd, retval;
if (sysconf(_SC_ASYNCHRONOUS_IO) < 200112L)
return PTS_UNSUPPORTED;
snprintf(tmpfname, sizeof(tmpfname), "/tmp/pts_aio_return_1_1_%d",
getpid());
unlink(tmpfname);
fd = open(tmpfname, O_CREAT | O_RDWR | O_EXCL,
S_IRUSR | S_IWUSR);
if (fd == -1) {
printf(TNAME " Error at open(): %s\n",
strerror(errno));
exit(PTS_UNRESOLVED);
}
unlink(tmpfname);
memset(buf, 0xaa, BUF_SIZE);
memset(&aiocb, 0, sizeof(struct aiocb));
aiocb.aio_fildes = fd;
aiocb.aio_buf = buf;
aiocb.aio_nbytes = BUF_SIZE;
if (aio_write(&aiocb) == -1) {
close(fd);
printf(TNAME " Error at aio_write(): %s\n",
strerror(errno));
exit(PTS_FAIL);
}
while (aio_error(&aiocb) == EINPROGRESS)
sleep(1);
retval = aio_return(&aiocb);
if (retval == -1) {
close(fd);
printf(TNAME " Error at aio_return(): %s\n",
strerror(aio_error(&aiocb)));
exit(PTS_FAIL);
} else if (retval != BUF_SIZE) {
close(fd);
printf(TNAME "aio_return didn't return expected size: %d\n",
retval);
exit(PTS_FAIL);
}
close(fd);
printf("Test PASSED\n");
exit(PTS_PASS);
}