Error code printing would be helpful...
Thanks,
-Garrett

Sent from my iPhone

On Jan 25, 2013, at 4:15 AM, Jan Stancek <[email protected]> wrote:

> This is same issue as:
>  commit 4558bfae923a715ac78b5b3d3ecdfa16f9424808
>  Author: Jan Stancek <[email protected]>
>  Date:   Wed Dec 5 12:49:47 2012 +0100
>      aio_read/7-1.c: fix race at exit
> 
> This patch waits for aio_fsync to complete, and after that
> checks that previously queued write is also completed.
> 
> Signed-off-by: Jan Stancek <[email protected]>
> ---
> .../conformance/interfaces/aio_fsync/2-1.c         |   24 ++++++++++++++++---
> 1 files changed, 20 insertions(+), 4 deletions(-)
> 
> diff --git 
> a/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/2-1.c 
> b/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/2-1.c
> index a534513..3a4c7fb 100644
> --- a/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/2-1.c
> +++ b/testcases/open_posix_testsuite/conformance/interfaces/aio_fsync/2-1.c
> @@ -27,7 +27,7 @@ int main(void)
> {
>    char tmpfname[256];
>    char buf[BUF_SIZE];
> -    int fd;
> +    int fd, ret;
>    struct aiocb aiocb_write;
>    struct aiocb aiocb_fsync;
> 
> @@ -63,9 +63,25 @@ int main(void)
>        exit(PTS_FAIL);
>    }
> 
> -    close(fd);
> +    /* wait for aio_fsync */
> +    do {
> +        usleep(10000);
> +        ret = aio_error(&aiocb_fsync);
> +    } while (ret == EINPROGRESS);
> 
> -    /* we didn't check if the operation is really performed */
> +    if (aio_return(&aiocb_fsync)) {
> +        printf(TNAME " Error at aio_return()\n");
> +        close(fd);
> +        return PTS_FAIL;
> +    }
> 
> -    return PTS_UNTESTED;
> +    /* check that aio_write is completed at this point */
> +    ret = aio_error(&aiocb_write);
> +    if (ret == EINPROGRESS) {
> +        printf(TNAME " aiocb_write error() : %s\n", strerror(ret));
> +        close(fd);
> +        return PTS_FAIL;
> +    }
> +    close(fd);
> +    return PTS_PASS;
> }
> -- 
> 1.7.1
> 
> 
> ------------------------------------------------------------------------------
> Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
> MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
> with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
> MVPs and experts. ON SALE this month only -- learn more at:
> http://p.sf.net/sfu/learnnow-d2d
> _______________________________________________
> Ltp-list mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/ltp-list

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnnow-d2d
_______________________________________________
Ltp-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ltp-list

Reply via email to