1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
/*
Copyright (c) 2005 X.Org Foundation L.L.C.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/*
* $Header: /cvs/xtest/xtest/xts5/tset/Xopen/XStringToKeysym/TestL.c,v 1.2 2005-11-03 08:44:01 jmichael Exp $
*
* Project: VSW5
*
* File: xts5/tset/Xopen/XStringToKeysym/TestL.c
*
* Description:
* Tests for XStringToKeysym()
*
* Modifications:
* $Log: TestL.c,v $
* Revision 1.2 2005-11-03 08:44:01 jmichael
* clean up all vsw5 paths to use xts5 instead.
*
* Revision 1.1.1.2 2005/04/15 14:05:40 anderson
* Reimport of the base with the legal name in the copyright fixed.
*
* Revision 8.0 1998/12/23 23:35:57 mar
* Branch point for Release 5.0.2
*
* Revision 7.0 1998/10/30 22:58:42 mar
* Branch point for Release 5.0.2b1
*
* Revision 6.0 1998/03/02 05:27:10 tbr
* Branch point for Release 5.0.1
*
* Revision 5.0 1998/01/26 03:23:43 tbr
* Branch point for Release 5.0.1b1
*
* Revision 4.1 1996/05/09 21:19:34 andy
* Fixed X includes
*
* Revision 4.0 1995/12/15 09:14:43 tbr
* Branch point for Release 5.0.0
*
* Revision 3.1 1995/12/15 01:18:09 andy
* Prepare for GA Release
*
*/
/*
* SCCS: @(#) TestL.c Rel 1.1 (11/28/91)
*
* UniSoft Ltd., London, England
*
* (C) Copyright 1991 X/Open Company Limited
*
* All rights reserved. No part of this source code may be reproduced,
* stored in a retrieval system, or transmitted, in any form or by any
* means, electronic, mechanical, photocopying, recording or otherwise,
* except as stated in the end-user licence agreement, without the prior
* permission of the copyright owners.
*
* X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
* the UK and other countries.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include "xtest.h"
#include "X11/Xlib.h"
#include "X11/Xutil.h"
#include "X11/Xresource.h"
#include "tet_api.h"
#include "xtestlib.h"
#include "pixval.h"
extern char *TestName;
static int
test(symbol, str)
KeySym symbol;
char *str;
{
KeySym rsym;
rsym = XStringToKeysym(str);
if(rsym == NoSymbol) {
report("XStringToKeysym() returned NoSymbol for string \"%s\".", str);
return(0);
}
if(rsym != symbol) {
report("XStringToKeysym() returned KeySym 0x%lx instead of 0x%lx.", (long) rsym, (long) symbol);
return(0);
}
return(1);
}
static void
reporterr(s)
char *s;
{
report("Symbol \"%s\" is not defined.", s);
}
#define XK_APL
#include <X11/keysymdef.h>
#undef XK_APL
strtsymL()
{
int pass = 0, fail = 0;
char *symstr;
KeySym rsym;
#ifdef XK_leftcaret
if(test(XK_leftcaret, "leftcaret") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_leftcaret");
FAIL;
#endif
#ifdef XK_rightcaret
if(test(XK_rightcaret, "rightcaret") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_rightcaret");
FAIL;
#endif
#ifdef XK_downcaret
if(test(XK_downcaret, "downcaret") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_downcaret");
FAIL;
#endif
#ifdef XK_upcaret
if(test(XK_upcaret, "upcaret") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_upcaret");
FAIL;
#endif
#ifdef XK_overbar
if(test(XK_overbar, "overbar") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_overbar");
FAIL;
#endif
#ifdef XK_downtack
if(test(XK_downtack, "downtack") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_downtack");
FAIL;
#endif
#ifdef XK_upshoe
if(test(XK_upshoe, "upshoe") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_upshoe");
FAIL;
#endif
#ifdef XK_downstile
if(test(XK_downstile, "downstile") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_downstile");
FAIL;
#endif
#ifdef XK_underbar
if(test(XK_underbar, "underbar") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_underbar");
FAIL;
#endif
#ifdef XK_jot
if(test(XK_jot, "jot") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_jot");
FAIL;
#endif
#ifdef XK_quad
if(test(XK_quad, "quad") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_quad");
FAIL;
#endif
#ifdef XK_uptack
if(test(XK_uptack, "uptack") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_uptack");
FAIL;
#endif
#ifdef XK_circle
if(test(XK_circle, "circle") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_circle");
FAIL;
#endif
#ifdef XK_upstile
if(test(XK_upstile, "upstile") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_upstile");
FAIL;
#endif
#ifdef XK_downshoe
if(test(XK_downshoe, "downshoe") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_downshoe");
FAIL;
#endif
#ifdef XK_rightshoe
if(test(XK_rightshoe, "rightshoe") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_rightshoe");
FAIL;
#endif
#ifdef XK_leftshoe
if(test(XK_leftshoe, "leftshoe") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_leftshoe");
FAIL;
#endif
#ifdef XK_lefttack
if(test(XK_lefttack, "lefttack") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_lefttack");
FAIL;
#endif
#ifdef XK_righttack
if(test(XK_righttack, "righttack") == 1)
CHECK;
else
FAIL;
#else
reporterr("XK_righttack");
FAIL;
#endif
CHECKPASS(19);
}
|