2
0

open_fail_test.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. ** Copyright (C) 2003,2004 Erik de Castro Lopo <erikd@mega-nerd.com>
  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 of the License, or
  7. ** (at your option) 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
  16. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. */
  18. #include "sfconfig.h"
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #if HAVE_UNISTD_H
  23. #include <unistd.h>
  24. #endif
  25. #include <sndfile.h>
  26. #include "utils.h"
  27. int
  28. main (void)
  29. { SNDFILE *sndfile ;
  30. SF_INFO sfinfo ;
  31. FILE *bad_file ;
  32. const char *bad_wav = "bad_wav.wav" ;
  33. const char bad_data [] = "RIFF WAVEfmt " ;
  34. print_test_name ("open_fail_test", bad_wav) ;
  35. memset (&sfinfo, 0, sizeof (sfinfo)) ;
  36. sndfile = sf_open ("let's hope this file doesn't exist", SFM_READ, &sfinfo) ;
  37. if (sndfile)
  38. { printf ("Line %d: should not have received a valid SNDFILE* pointer.\n", __LINE__) ;
  39. exit (1) ;
  40. } ;
  41. if ((bad_file = fopen (bad_wav, "w")) == NULL)
  42. { printf ("Line %d: fopen returned NULL.\n", __LINE__) ;
  43. exit (1) ;
  44. } ;
  45. fwrite (bad_data, sizeof (bad_data), 1, bad_file) ;
  46. fclose (bad_file) ;
  47. sndfile = sf_open (bad_wav, SFM_READ, &sfinfo) ;
  48. if (sndfile)
  49. { printf ("Line %d: should not have received a valid SNDFILE* pointer.\n", __LINE__) ;
  50. exit (1) ;
  51. } ;
  52. unlink (bad_wav) ;
  53. puts ("ok") ;
  54. return 0 ;
  55. } /* main */
  56. /*
  57. ** Do not edit or modify anything in this comment block.
  58. ** The arch-tag line is a file identity tag for the GNU Arch
  59. ** revision control system.
  60. **
  61. ** arch-tag: 24440323-00b1-4e4b-87c5-0e3b7e9605e9
  62. */