summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-26 08:05:23 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2008-09-26 08:05:23 +0000
commitb05f58e5decce0387ea9f5cb2b8ec4f5ede3dcb2 (patch)
treeec4881c8083025fe35f7e7bea80b46a4c6fce69c /test
parentc7a58c2edadb8fce84ab2f8b129a87eb19bdc485 (diff)
- revert inappropriate part of r23478
Diffstat (limited to 'test')
-rw-r--r--test/unistd/tst-preadwrite.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/test/unistd/tst-preadwrite.c b/test/unistd/tst-preadwrite.c
index 9650562d8..281044858 100644
--- a/test/unistd/tst-preadwrite.c
+++ b/test/unistd/tst-preadwrite.c
@@ -30,6 +30,9 @@
# define PWRITE pwrite
#endif
+#define STRINGIFY(s) STRINGIFY2 (s)
+#define STRINGIFY2(s) #s
+
/* Prototype for our test function. */
extern void do_prepare (int argc, char *argv[]);
extern int do_test (int argc, char *argv[]);
@@ -53,7 +56,7 @@ do_prepare (int argc, char *argv[])
char name_len;
#define FNAME FNAME2(TRUNCATE)
-#define FNAME2(s) "/" __stringify(s) "XXXXXX"
+#define FNAME2(s) "/" STRINGIFY(s) "XXXXXX"
name_len = strlen (test_dir);
name = malloc (name_len + sizeof (FNAME));
@@ -85,15 +88,15 @@ do_test (int argc, char *argv[])
for (i = 100; i < 200; ++i)
buf[i] = i;
if (PWRITE (fd, buf + 100, 100, 100) != 100)
- error (EXIT_FAILURE, errno, "during %s", __stringify (PWRITE));
+ error (EXIT_FAILURE, errno, "during %s", STRINGIFY (PWRITE));
for (i = 450; i < 600; ++i)
buf[i] = i;
if (PWRITE (fd, buf + 450, 150, 450) != 150)
- error (EXIT_FAILURE, errno, "during %s", __stringify (PWRITE));
+ error (EXIT_FAILURE, errno, "during %s", STRINGIFY (PWRITE));
if (PREAD (fd, res, sizeof (buf) - 50, 50) != sizeof (buf) - 50)
- error (EXIT_FAILURE, errno, "during %s", __stringify (PREAD));
+ error (EXIT_FAILURE, errno, "during %s", STRINGIFY (PREAD));
close (fd);
unlink (name);