opendir-tst1.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /* Copyright (C) 1998, 2000 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, write to the Free
  14. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  15. 02111-1307 USA. */
  16. #include <dirent.h>
  17. #include <errno.h>
  18. #include <fcntl.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #include <string.h>
  22. #include <unistd.h>
  23. #include <sys/stat.h>
  24. /* Name of the FIFO. */
  25. char tmpname[] = "fifoXXXXXX";
  26. /* Do the real work. */
  27. static int
  28. real_test (void)
  29. {
  30. DIR *dirp;
  31. /* This should not block for an FIFO. */
  32. dirp = opendir (tmpname);
  33. /* Successful. */
  34. if (dirp != NULL)
  35. {
  36. /* Oh, oh, how can this work? */
  37. fputs ("`opendir' succeeded on a FIFO???\n", stdout);
  38. closedir (dirp);
  39. return 1;
  40. }
  41. if (errno != ENOTDIR)
  42. {
  43. fprintf (stdout, "`opendir' return error `%s' instead of `%s'\n",
  44. strerror (errno), strerror (ENOTDIR));
  45. return 1;
  46. }
  47. return 0;
  48. }
  49. static int
  50. do_test (int argc, char *argv[])
  51. {
  52. int retval;
  53. retval = mkstemp(tmpname);
  54. close(retval);
  55. unlink(tmpname);
  56. /* Try to generate a FIFO. */
  57. if (mknod (tmpname, 0600 | S_IFIFO, 0) < 0)
  58. {
  59. perror ("mknod");
  60. /* We cannot make this an error. */
  61. return 0;
  62. }
  63. retval = real_test ();
  64. remove (tmpname);
  65. return retval;
  66. }
  67. static void
  68. do_cleanup (void)
  69. {
  70. remove (tmpname);
  71. }
  72. #define CLEANUP_HANDLER do_cleanup ()
  73. /* Include the test skeleton. */
  74. #include "../test-skeleton.c"