usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-ttyname_r.c
bloba5a15e3f56073259bf186c182a2304ab91105056
1 /* Test of ttyname_r(3).
2 Copyright (C) 2010-2024 Free Software Foundation, Inc.
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 3 of the License, or
7 (at your option) any later version.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 #include <config.h>
19 #include <unistd.h>
21 #include "signature.h"
22 SIGNATURE_CHECK (ttyname_r, int, (int, char *, size_t));
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <stdio.h>
27 #include <string.h>
29 #include "macros.h"
31 int
32 main (void)
34 int fd;
35 char buf[100];
37 /* Open the controlling tty of the current process. */
38 fd = open ("/dev/tty", O_RDONLY);
39 if (fd < 0)
41 fprintf (stderr, "Skipping test: cannot open controlling tty\n");
42 return 77;
45 ASSERT (ttyname_r (fd, buf, 1) == ERANGE);
47 ASSERT (ttyname_r (fd, buf, sizeof (buf)) == 0);
48 ASSERT (memcmp (buf, "/dev/", 5) == 0);
50 /* Test behaviour for invalid file descriptors. */
52 int err = ttyname_r (-1, buf, sizeof (buf));
53 ASSERT (err == EBADF
54 || err == ENOTTY /* seen on FreeBSD 6.4 */
58 int err;
59 close (99);
60 err = ttyname_r (99, buf, sizeof (buf));
61 ASSERT (err == EBADF
62 || err == ENOTTY /* seen on FreeBSD 6.4 */
66 return test_exit_status;