Better ASSERT macro.
[gnulib.git] / tests / test-binary-io.c
1 /* Test of binary mode I/O.
2    Copyright (C) 2005, 2007 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2005.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include "binary-io.h"
25
26 #include <sys/types.h>
27 #include <sys/stat.h>
28 #include <fcntl.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <unistd.h>
32
33 #define ASSERT(expr) \
34   do                                                                         \
35     {                                                                        \
36       if (!(expr))                                                           \
37         {                                                                    \
38           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
39           abort ();                                                          \
40         }                                                                    \
41     }                                                                        \
42   while (0)
43
44 int
45 main ()
46 {
47   /* Test the O_BINARY macro.  */
48   {
49     int fd = open ("t-bin-out2.tmp", O_CREAT | O_TRUNC | O_RDWR | O_BINARY);
50     if (write (fd, "Hello\n", 6) < 0)
51       exit (1);
52     close (fd);
53   }
54   {
55     struct stat statbuf;
56     if (stat ("t-bin-out2.tmp", &statbuf) < 0)
57       exit (1);
58     ASSERT (statbuf.st_size == 6);
59   }
60   unlink ("t-bin-out2.tmp");
61
62   /* Test the SET_BINARY macro.  */
63   SET_BINARY (1);
64   fputs ("Hello\n", stdout);
65   fclose (stdout);
66   fclose (stderr);
67   {
68     struct stat statbuf;
69     if (stat ("t-bin-out1.tmp", &statbuf) < 0)
70       exit (1);
71     ASSERT (statbuf.st_size == 6);
72   }
73
74   return 0;
75 }