Blame gnulib-tests/test-binary-io.c

Packit 33f14e
/* Test of binary mode I/O.
Packit 33f14e
   Copyright (C) 2005, 2007-2017 Free Software Foundation, Inc.
Packit 33f14e
Packit 33f14e
   This program is free software: you can redistribute it and/or modify
Packit 33f14e
   it under the terms of the GNU General Public License as published by
Packit 33f14e
   the Free Software Foundation; either version 3 of the License, or
Packit 33f14e
   (at your option) any later version.
Packit 33f14e
Packit 33f14e
   This program is distributed in the hope that it will be useful,
Packit 33f14e
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 33f14e
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 33f14e
   GNU General Public License for more details.
Packit 33f14e
Packit 33f14e
   You should have received a copy of the GNU General Public License
Packit 33f14e
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
Packit 33f14e
Packit 33f14e
/* Written by Bruno Haible <bruno@clisp.org>, 2005.  */
Packit 33f14e
Packit 33f14e
#include <config.h>
Packit 33f14e
Packit 33f14e
#include "binary-io.h"
Packit 33f14e
Packit 33f14e
#include <sys/types.h>
Packit 33f14e
#include <sys/stat.h>
Packit 33f14e
#include <fcntl.h>
Packit 33f14e
#include <stdio.h>
Packit 33f14e
#include <stdlib.h>
Packit 33f14e
#include <unistd.h>
Packit 33f14e
Packit 33f14e
#include "macros.h"
Packit 33f14e
Packit 33f14e
int
Packit 33f14e
main (int argc, char *argv[])
Packit 33f14e
{
Packit 33f14e
  /* Test the O_BINARY macro.  */
Packit 33f14e
  {
Packit 33f14e
    int fd =
Packit 33f14e
      open ("t-bin-out0.tmp", O_CREAT | O_TRUNC | O_RDWR | O_BINARY, 0600);
Packit 33f14e
    if (write (fd, "Hello\n", 6) < 0)
Packit 33f14e
      exit (1);
Packit 33f14e
    close (fd);
Packit 33f14e
  }
Packit 33f14e
  {
Packit 33f14e
    struct stat statbuf;
Packit 33f14e
    if (stat ("t-bin-out0.tmp", &statbuf) < 0)
Packit 33f14e
      exit (1);
Packit 33f14e
    ASSERT (statbuf.st_size == 6);
Packit 33f14e
  }
Packit 33f14e
Packit 33f14e
  switch (argv[1][0])
Packit 33f14e
    {
Packit 33f14e
    case '1':
Packit 33f14e
      /* Test the set_binary_mode() function.  */
Packit 33f14e
      set_binary_mode (1, O_BINARY);
Packit 33f14e
      fputs ("Hello\n", stdout);
Packit 33f14e
      break;
Packit 33f14e
Packit 33f14e
    default:
Packit 33f14e
      break;
Packit 33f14e
    }
Packit 33f14e
Packit 33f14e
  return 0;
Packit 33f14e
}