strtod: next round of AIX fixes
[gnulib.git] / tests / test-ptsname.c
1 /* Test of ptsname(3).
2    Copyright (C) 2010 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 3 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, see <http://www.gnu.org/licenses/>.  */
16
17 #include <config.h>
18
19 #include <stdlib.h>
20
21 #include "signature.h"
22 SIGNATURE_CHECK (ptsname, char *, (int));
23
24 #include <fcntl.h>
25 #include <stdio.h>
26 #include <string.h>
27 #include <unistd.h>
28
29 #include "macros.h"
30
31 int
32 main (void)
33 {
34   {
35     int fd;
36     char *result;
37
38     /* Open the controlling tty of the current process.  */
39     fd = open ("/dev/tty", O_RDONLY);
40     if (fd < 0)
41       {
42         fprintf (stderr, "Skipping test: cannot open controlling tty\n");
43         return 77;
44       }
45
46     result = ptsname (fd);
47     /* The result is usually NULL, because /dev/tty is a slave, not a
48        master.  */
49     if (result != NULL)
50       {
51         ASSERT (memcmp (result, "/dev/", 5) == 0);
52       }
53
54     close (fd);
55   }
56
57   /* Try various master names of MacOS X: /dev/pty[p-w][0-9a-f]  */
58   {
59     int char1;
60     int char2;
61
62     for (char1 = 'p'; char1 <= 'w'; char1++)
63       for (char2 = '0'; char2 <= 'f'; (char2 == '9' ? char2 = 'a' : char2++))
64         {
65           char master_name[32];
66           int fd;
67
68           sprintf (master_name, "/dev/pty%c%c", char1, char2);
69           fd = open (master_name, O_RDONLY);
70           if (fd >= 0)
71             {
72               char *result;
73               char slave_name[32];
74
75               result = ptsname (fd);
76               ASSERT (result != NULL);
77               sprintf (slave_name, "/dev/tty%c%c", char1, char2);
78               ASSERT (strcmp (result, slave_name) == 0);
79
80               close (fd);
81             }
82         }
83   }
84
85   /* Try various master names of *BSD: /dev/pty[p-sP-S][0-9a-v]  */
86   {
87     int upper;
88     int char1;
89     int char2;
90
91     for (upper = 0; upper <= 1; upper++)
92       for (char1 = (upper ? 'P' : 'p'); char1 <= (upper ? 'S' : 's'); char1++)
93         for (char2 = '0'; char2 <= 'v'; (char2 == '9' ? char2 = 'a' : char2++))
94           {
95             char master_name[32];
96             int fd;
97
98             sprintf (master_name, "/dev/pty%c%c", char1, char2);
99             fd = open (master_name, O_RDONLY);
100             if (fd >= 0)
101               {
102                 char *result;
103                 char slave_name[32];
104
105                 result = ptsname (fd);
106                 ASSERT (result != NULL);
107                 sprintf (slave_name, "/dev/tty%c%c", char1, char2);
108                 ASSERT (strcmp (result, slave_name) == 0);
109
110                 close (fd);
111               }
112           }
113   }
114
115   return 0;
116 }