X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-pread.c;h=0f43757dc8cbd73e13574f921258928a8a52ab99;hb=bfbd822767f532ab05e24bda5b67b992f3562321;hp=fd5db8e8a159406e11ac51648314749e1b69a796;hpb=1baf5e2a66516cbc706eeb23f2451862a7ab0f89;p=gnulib.git diff --git a/tests/test-pread.c b/tests/test-pread.c index fd5db8e8a..0f43757dc 100644 --- a/tests/test-pread.c +++ b/tests/test-pread.c @@ -1,5 +1,5 @@ /* Test the pread function. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009, 2010 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,23 +20,14 @@ #include -#include -#include +#include "signature.h" +SIGNATURE_CHECK (pread, ssize_t, (int, void *, size_t, off_t)); + #include #include #include -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) +#include "macros.h" #define N (sizeof buf - 1) @@ -65,12 +56,12 @@ main (void) ASSERT (init_pos == pos); for (i = 0; i < N; i++) - { - char byte_buf; - ASSERT (pread (fd, &byte_buf, 1, i) == 1); - ASSERT (byte_buf == buf[i]); - ASSERT (lseek (fd, 0, SEEK_CUR) == init_pos); - } + { + char byte_buf; + ASSERT (pread (fd, &byte_buf, 1, i) == 1); + ASSERT (byte_buf == buf[i]); + ASSERT (lseek (fd, 0, SEEK_CUR) == init_pos); + } } {