Choose better temporary filenames.
[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) if (!(expr)) abort ();
34
35 int
36 main ()
37 {
38   /* Test the O_BINARY macro.  */
39   {
40     int fd = open ("t-bin-out2.tmp", O_CREAT | O_TRUNC | O_RDWR | O_BINARY);
41     if (write (fd, "Hello\n", 6) < 0)
42       exit (1);
43     close (fd);
44   }
45   {
46     struct stat statbuf;
47     if (stat ("t-bin-out2.tmp", &statbuf) < 0)
48       exit (1);
49     ASSERT (statbuf.st_size == 6);
50   }
51   unlink ("t-bin-out2.tmp");
52
53   /* Test the SET_BINARY macro.  */
54   SET_BINARY (1);
55   fputs ("Hello\n", stdout);
56   fclose (stdout);
57   fclose (stderr);
58   {
59     struct stat statbuf;
60     if (stat ("t-bin-out1.tmp", &statbuf) < 0)
61       exit (1);
62     ASSERT (statbuf.st_size == 6);
63   }
64
65   return 0;
66 }