author | Eckhart Koeppen <eckhart.koppen@nokia.com> |
Thu, 22 Apr 2010 16:15:11 +0300 | |
branch | RCL_3 |
changeset 14 | 8c4229025c0b |
parent 7 | 3f74d0d4af4c |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
4
3b1da2848fc7
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
7 |
** This file is part of the test suite of the Qt Toolkit. |
|
8 |
** |
|
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
15 |
** |
|
16 |
** GNU Lesser General Public License Usage |
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 |
** General Public License version 2.1 as published by the Free Software |
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 |
** packaging of this file. Please review the following information to |
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 |
** |
|
24 |
** In addition, as a special exception, Nokia gives you certain additional |
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 |
** |
|
28 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
38 |
** $QT_END_LICENSE$ |
|
39 |
** |
|
40 |
****************************************************************************/ |
|
41 |
||
42 |
||
43 |
#include <QtCore/QtCore> |
|
44 |
#include <QtTest/QtTest> |
|
45 |
||
46 |
#ifdef QT_NAMESPACE |
|
47 |
#define STRINGIFY_HELPER(s) #s |
|
48 |
#define STRINGIFY(s) STRINGIFY_HELPER(s) |
|
49 |
QString ns = STRINGIFY(QT_NAMESPACE) + QString("::"); |
|
50 |
#else |
|
51 |
QString ns; |
|
52 |
#endif |
|
53 |
||
54 |
class tst_Symbols: public QObject |
|
55 |
{ |
|
56 |
Q_OBJECT |
|
57 |
private slots: |
|
58 |
void prefix(); |
|
59 |
void globalObjects(); |
|
60 |
}; |
|
61 |
||
62 |
/* Computes the line number from a symbol */ |
|
63 |
static QString symbolToLine(const QString &symbol, const QString &lib) |
|
64 |
{ |
|
65 |
// nm outputs the symbol name, the type, the address and the size |
|
66 |
QRegExp re("global constructors keyed to ([a-zA-Z_0-9.]*) (.) ([0-f]*) ([0-f]*)"); |
|
67 |
if (re.indexIn(symbol) == -1) |
|
68 |
return QString(); |
|
69 |
||
70 |
// address and symbolSize are in hex. Convert to integers |
|
71 |
bool ok; |
|
72 |
int symbolAddress = re.cap(3).toInt(&ok, 16); |
|
73 |
if (!ok) |
|
74 |
return QString(); |
|
75 |
int symbolSize = re.cap(4).toInt(&ok, 16); |
|
76 |
if (!ok) |
|
77 |
return QString(); |
|
78 |
||
79 |
// now, find the start address, which is the address - size |
|
80 |
QString startAddress = QString::number(symbolAddress - symbolSize, 16); |
|
81 |
||
82 |
QProcess proc; |
|
83 |
proc.start("addr2line", QStringList() << "-e" << lib << startAddress); |
|
84 |
if (!proc.waitForFinished()) |
|
85 |
return QString(); |
|
86 |
||
87 |
QString result = QString::fromLocal8Bit(proc.readLine()); |
|
88 |
result.chop(1); // chop tailing newline |
|
89 |
return result; |
|
90 |
} |
|
91 |
||
92 |
/* This test searches through all Qt libraries and searches for symbols |
|
93 |
starting with "global constructors keyed to " |
|
94 |
||
95 |
These indicate static global objects, which should not be used in shared |
|
96 |
libraries - use Q_GLOBAL_STATIC instead. |
|
97 |
*/ |
|
98 |
void tst_Symbols::globalObjects() |
|
99 |
{ |
|
100 |
#ifndef Q_OS_LINUX |
|
101 |
QSKIP("Linux-specific test", SkipAll); |
|
102 |
#endif |
|
103 |
QSKIP("Test disabled, we're not fixing these issues in this Qt version", SkipAll); |
|
104 |
||
105 |
// these are regexps for global objects that are allowed in Qt |
|
106 |
QStringList whitelist = QStringList() |
|
107 |
// ignore qInitResources - they are safe to use |
|
108 |
<< "^_Z[0-9]*qInitResources_" |
|
109 |
<< "qrc_.*\\.cpp" |
|
110 |
// ignore qRegisterGuiVariant - it's a safe fallback to register GUI Variants |
|
111 |
<< "qRegisterGuiVariant"; |
|
112 |
||
113 |
bool isFailed = false; |
|
114 |
||
115 |
QDir dir(QLibraryInfo::location(QLibraryInfo::LibrariesPath), "*.so"); |
|
116 |
QStringList files = dir.entryList(); |
|
117 |
QVERIFY(!files.isEmpty()); |
|
118 |
||
119 |
foreach (QString lib, files) { |
|
120 |
if (lib == "libQtCLucene.so") { |
|
121 |
// skip this library, it's 3rd-party C++ |
|
122 |
continue; |
|
123 |
} |
|
124 |
if (lib == "libQt3Support.so") { |
|
125 |
// we're not going to fix these issues anyway, so skip this library |
|
126 |
continue; |
|
127 |
} |
|
128 |
||
129 |
QProcess proc; |
|
130 |
proc.start("nm", |
|
131 |
QStringList() << "-C" << "--format=posix" |
|
132 |
<< dir.absolutePath() + "/" + lib); |
|
133 |
QVERIFY(proc.waitForFinished()); |
|
134 |
QCOMPARE(proc.exitCode(), 0); |
|
135 |
QCOMPARE(QString::fromLocal8Bit(proc.readAllStandardError()), QString()); |
|
136 |
||
137 |
QStringList symbols = QString::fromLocal8Bit(proc.readAll()).split("\n"); |
|
138 |
QVERIFY(!symbols.isEmpty()); |
|
139 |
foreach (QString symbol, symbols) { |
|
140 |
if (symbol.isEmpty()) |
|
141 |
continue; |
|
142 |
||
143 |
if (!symbol.startsWith("global constructors keyed to ")) |
|
144 |
continue; |
|
145 |
||
146 |
QRegExp re("global constructors keyed to ([a-zA-Z_0-9.]*)"); |
|
147 |
QVERIFY(re.indexIn(symbol) != -1); |
|
148 |
||
149 |
QString cap = re.cap(1); |
|
150 |
||
151 |
bool whitelisted = false; |
|
152 |
foreach (QString white, whitelist) { |
|
153 |
if (cap.indexOf(QRegExp(white)) != -1) { |
|
154 |
whitelisted = true; |
|
155 |
break; |
|
156 |
} |
|
157 |
} |
|
158 |
if (whitelisted) |
|
159 |
continue; |
|
160 |
||
161 |
QString line = symbolToLine(symbol, dir.absolutePath() + "/" + lib); |
|
162 |
||
163 |
if (cap.contains('.')) |
|
164 |
QWARN(qPrintable("Static global object(s) found in " + lib + " in file " + cap + " (" + line + ")")); |
|
165 |
else |
|
166 |
QWARN(qPrintable("Static global object found in " + lib + " near symbol " + cap + " (" + line + ")")); |
|
167 |
||
168 |
isFailed = true; |
|
169 |
} |
|
170 |
} |
|
171 |
||
172 |
if (isFailed) { |
|
173 |
#if QT_VERSION >= 0x040600 |
|
174 |
QVERIFY2(!isFailed, "Libraries contain static global objects. See Debug output above."); |
|
175 |
#else |
|
176 |
QSKIP("Libraries contains static global objects. See Debug output above. [These errors cannot be fixed in 4.5 in time]", SkipSingle); |
|
177 |
#endif |
|
178 |
} |
|
179 |
} |
|
180 |
||
181 |
void tst_Symbols::prefix() |
|
182 |
{ |
|
183 |
#if defined(QT_CROSS_COMPILED) |
|
184 |
QSKIP("Probably no compiler on the target", SkipAll); |
|
185 |
#elif defined(Q_OS_LINUX) |
|
186 |
QStringList qtTypes; |
|
187 |
qtTypes << "QString" << "QChar" << "QWidget" << "QObject" << "QVariant" << "QList" |
|
188 |
<< "QMap" << "QHash" << "QVector" << "QRect" << "QSize" << "QPoint" |
|
189 |
<< "QTextFormat" << "QTextLength" << "QPen" << "QFont" << "QIcon" |
|
190 |
<< "QPixmap" << "QImage" << "QRegion" << "QPolygon"; |
|
191 |
QStringList qAlgorithmFunctions; |
|
192 |
qAlgorithmFunctions << "qBinaryFind" << "qLowerBound" << "qUpperBound" |
|
193 |
<< "qAbs" << "qMin" << "qMax" << "qBound" << "qSwap" |
|
194 |
<< "qHash" << "qDeleteAll" << "qCopy" << "qSort"; |
|
195 |
||
196 |
QStringList exceptionalSymbols; |
|
197 |
exceptionalSymbols << "XRectangle::~XRectangle()" |
|
198 |
<< "XChar2b::~XChar2b()" |
|
199 |
<< "XPoint::~XPoint()" |
|
200 |
<< "glyph_metrics_t::"; // #### Qt 4.2 |
|
201 |
||
202 |
QStringList stupidCSymbols; |
|
203 |
stupidCSymbols << "Add_Glyph_Property" |
|
204 |
<< "Check_Property" |
|
205 |
<< "Coverage_Index" |
|
206 |
<< "Get_Class" |
|
207 |
<< "Get_Device" |
|
208 |
<< "rcsid3" |
|
209 |
<< "sfnt_module_class" |
|
210 |
<< "t1cid_driver_class" |
|
211 |
<< "t42_driver_class" |
|
212 |
<< "winfnt_driver_class" |
|
213 |
<< "pshinter_module_class" |
|
214 |
<< "psnames_module_class" |
|
7
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
215 |
// C symbols from Qt |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
216 |
<< "qt_addObject" |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
217 |
<< "qt_removeObject" |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
218 |
<< "qt_startup_hook" |
0 | 219 |
; |
220 |
||
221 |
QHash<QString,QStringList> excusedPrefixes; |
|
222 |
excusedPrefixes[QString()] = |
|
223 |
QStringList() << "Ui_Q"; // uic generated, like Ui_QPrintDialog |
|
224 |
||
225 |
excusedPrefixes["QtCore"] = |
|
226 |
QStringList() << "hb_" |
|
227 |
<< "HB_" |
|
228 |
// zlib symbols, for -qt-zlib ;( |
|
229 |
<< "deflate" |
|
230 |
<< "compress" |
|
231 |
<< "uncompress" |
|
232 |
<< "adler32" |
|
233 |
<< "gz" |
|
234 |
<< "inflate" |
|
235 |
<< "zlib" |
|
236 |
<< "zError" |
|
237 |
<< "get_crc_table" |
|
238 |
<< "crc32"; |
|
239 |
||
240 |
excusedPrefixes["QtGui"] = |
|
241 |
QStringList() << "ftglue_" |
|
242 |
<< "Load_" |
|
243 |
<< "otl_" |
|
244 |
<< "TT_" |
|
245 |
<< "tt_" |
|
246 |
<< "t1_" |
|
247 |
<< "Free_" |
|
248 |
<< "FT_" |
|
249 |
<< "FTC_" |
|
250 |
<< "ft_" |
|
251 |
<< "ftc_" |
|
252 |
<< "af_autofitter" |
|
253 |
<< "af_dummy" |
|
254 |
<< "af_latin" |
|
255 |
<< "autofit_" |
|
256 |
<< "XPanorami" |
|
257 |
<< "Xinerama" |
|
258 |
<< "bdf_" |
|
259 |
<< "ccf_" |
|
260 |
<< "gray_raster" |
|
261 |
<< "pcf_" |
|
262 |
<< "cff_" |
|
263 |
<< "otv_" |
|
264 |
<< "pfr_" |
|
265 |
<< "ps_" |
|
266 |
<< "psaux" |
|
267 |
<< "png_"; |
|
268 |
||
269 |
excusedPrefixes["QtSql"] = |
|
270 |
QStringList() << "sqlite3"; |
|
271 |
||
272 |
excusedPrefixes["QtWebKit"] = |
|
273 |
QStringList() << "WebCore::" |
|
274 |
<< "KJS::" |
|
275 |
<< "kjs" |
|
276 |
<< "kJS" |
|
277 |
<< "JS" |
|
278 |
// << "OpaqueJS" |
|
279 |
<< "WTF" |
|
280 |
<< "wtf_" |
|
281 |
<< "SVG::" |
|
282 |
<< "NPN_" |
|
283 |
<< "cti" // ctiTrampoline and ctiVMThrowTrampoline from the JIT |
|
284 |
#ifdef QT_NAMESPACE |
|
285 |
<< "QWeb" // Webkit is only 'namespace aware' |
|
7
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
286 |
<< "qWeb" |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
287 |
<< "qt" |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
288 |
<< "QGraphicsWebView" |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
289 |
<< "operator" |
0 | 290 |
#endif |
291 |
; |
|
292 |
||
293 |
excusedPrefixes["phonon"] = |
|
294 |
QStringList() << ns + "Phonon"; |
|
295 |
||
296 |
QDir dir(qgetenv("QTDIR") + "/lib", "*.so"); |
|
297 |
QStringList files = dir.entryList(); |
|
298 |
QVERIFY(!files.isEmpty()); |
|
299 |
||
300 |
bool isFailed = false; |
|
301 |
foreach (QString lib, files) { |
|
302 |
if (lib.contains("Designer") || lib.contains("QtCLucene") || lib.contains("XmlPatternsSDK")) |
|
303 |
continue; |
|
304 |
||
305 |
bool isPhonon = lib.contains("phonon"); |
|
306 |
||
307 |
QProcess proc; |
|
308 |
proc.start("nm", |
|
309 |
QStringList() << "-g" << "-C" << "-D" << "--format=posix" |
|
310 |
<< "--defined-only" << dir.absolutePath() + "/" + lib); |
|
311 |
QVERIFY(proc.waitForFinished()); |
|
312 |
QCOMPARE(proc.exitCode(), 0); |
|
313 |
QCOMPARE(QString::fromLocal8Bit(proc.readAllStandardError()), QString()); |
|
314 |
||
315 |
QStringList symbols = QString::fromLocal8Bit(proc.readAll()).split("\n"); |
|
316 |
QVERIFY(!symbols.isEmpty()); |
|
317 |
foreach (QString symbol, symbols) { |
|
318 |
if (symbol.isEmpty()) |
|
319 |
continue; |
|
320 |
||
321 |
if (symbol.startsWith("unsigned ")) |
|
322 |
// strip modifiers |
|
323 |
symbol = symbol.mid(symbol.indexOf(' ') + 1); |
|
324 |
if (symbol.startsWith("long long ")) { |
|
325 |
symbol = symbol.mid(10); |
|
326 |
} else if (symbol.startsWith("bool ") || symbol.startsWith("bool* ") |
|
327 |
|| symbol.startsWith("char ") || symbol.startsWith("char* ") |
|
328 |
|| symbol.startsWith("int ") || symbol.startsWith("int* ") || symbol.startsWith("int*&") |
|
329 |
|| symbol.startsWith("short") || symbol.startsWith("long ") |
|
330 |
|| symbol.startsWith("void ") || symbol.startsWith("void* ") |
|
331 |
|| symbol.startsWith("double ") || symbol.startsWith("double* ") |
|
332 |
|| symbol.startsWith("float ") || symbol.startsWith("float* ")) { |
|
333 |
// partial templates have the return type in their demangled name, strip it |
|
334 |
symbol = symbol.mid(symbol.indexOf(' ') + 1); |
|
335 |
} |
|
336 |
if (symbol.startsWith("const ") || symbol.startsWith("const* ") || |
|
337 |
symbol.startsWith("const& ")) { |
|
338 |
// strip modifiers |
|
339 |
symbol = symbol.mid(symbol.indexOf(' ') + 1); |
|
340 |
} |
|
341 |
||
7
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
342 |
if (symbol.mid(symbol.indexOf(' ')+1).startsWith("std::")) |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
343 |
continue; |
0 | 344 |
if (symbol.startsWith("_") || symbol.startsWith("std::")) |
345 |
continue; |
|
346 |
if (symbol.startsWith("vtable ") || symbol.startsWith("VTT for ") || |
|
347 |
symbol.startsWith("construction vtable for")) |
|
348 |
continue; |
|
349 |
if (symbol.startsWith("typeinfo ")) |
|
350 |
continue; |
|
351 |
if (symbol.startsWith("non-virtual thunk ") || symbol.startsWith("virtual thunk")) |
|
352 |
continue; |
|
353 |
if (symbol.startsWith(ns + "operator")) |
|
354 |
continue; |
|
7
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
355 |
if (symbol.startsWith("operator new") || symbol.startsWith("operator delete")) |
3f74d0d4af4c
qt:70947f0f93d948bc89b3b43d00da758a51f1ef84
Eckhart Koeppen <eckhart.koppen@nokia.com>
parents:
4
diff
changeset
|
356 |
continue; |
0 | 357 |
if (symbol.startsWith("guard variable for ")) |
358 |
continue; |
|
359 |
if (symbol.contains("(" + ns + "QTextStream")) |
|
360 |
// QTextStream is excused. |
|
361 |
continue; |
|
362 |
if (symbol.contains("(" + ns + "Q3TextStream")) |
|
363 |
// Q3TextStream is excused. |
|
364 |
continue; |
|
365 |
if (symbol.startsWith(ns + "bitBlt") || symbol.startsWith(ns + "copyBlt")) |
|
366 |
// you're excused, too |
|
367 |
continue; |
|
368 |
||
369 |
bool symbolOk = false; |
|
370 |
||
371 |
QHash<QString,QStringList>::ConstIterator it = excusedPrefixes.constBegin(); |
|
372 |
for ( ; it != excusedPrefixes.constEnd(); ++it) { |
|
373 |
if (!lib.contains(it.key())) |
|
374 |
continue; |
|
375 |
foreach (QString prefix, it.value()) |
|
376 |
if (symbol.startsWith(prefix)) { |
|
377 |
symbolOk = true; |
|
378 |
break; |
|
379 |
} |
|
380 |
} |
|
381 |
||
382 |
if (symbolOk) |
|
383 |
continue; |
|
384 |
||
385 |
foreach (QString cSymbolPattern, stupidCSymbols) |
|
386 |
if (symbol.contains(cSymbolPattern)) { |
|
387 |
symbolOk = true; |
|
388 |
break; |
|
389 |
} |
|
390 |
||
391 |
if (symbolOk) |
|
392 |
continue; |
|
393 |
||
394 |
QStringList fields = symbol.split(' '); |
|
395 |
// the last two fields are address and size and the third last field is the symbol type |
|
396 |
QVERIFY(fields.count() > 3); |
|
397 |
QString type = fields.at(fields.count() - 3); |
|
398 |
// weak symbol |
|
399 |
if (type == QLatin1String("W")) { |
|
400 |
if (symbol.contains("qAtomic")) |
|
401 |
continue; |
|
402 |
||
403 |
if (symbol.contains("fstat") |
|
404 |
|| symbol.contains("lstat") |
|
405 |
|| symbol.contains("stat64") |
|
406 |
) |
|
407 |
continue; |
|
408 |
||
409 |
foreach (QString acceptedPattern, qAlgorithmFunctions + exceptionalSymbols) |
|
410 |
if (symbol.contains(acceptedPattern)) { |
|
411 |
symbolOk = true; |
|
412 |
break; |
|
413 |
} |
|
414 |
||
415 |
if (symbolOk) |
|
416 |
continue; |
|
417 |
||
418 |
QString plainSymbol; |
|
419 |
for (int i = 0; i < fields.count() - 3; ++i) { |
|
420 |
if (i > 0) |
|
421 |
plainSymbol += QLatin1Char(' '); |
|
422 |
plainSymbol += fields.at(i); |
|
423 |
} |
|
424 |
foreach (QString qtType, qtTypes) |
|
425 |
if (plainSymbol.contains(qtType)) { |
|
426 |
symbolOk = true; |
|
427 |
break; |
|
428 |
} |
|
429 |
||
430 |
if (symbolOk) |
|
431 |
continue; |
|
432 |
} |
|
433 |
||
434 |
QString prefix = ns + "q"; |
|
435 |
if (!symbol.startsWith(prefix, Qt::CaseInsensitive) |
|
436 |
&& !(isPhonon && symbol.startsWith("Phonon"))) { |
|
437 |
qDebug("symbol in '%s' does not start with prefix '%s': '%s'", |
|
438 |
qPrintable(lib), qPrintable(prefix), qPrintable(symbol)); |
|
439 |
isFailed = true; |
|
440 |
} |
|
441 |
} |
|
442 |
} |
|
443 |
||
444 |
# if defined(Q_OS_LINUX) && defined(Q_CC_INTEL) |
|
445 |
QEXPECT_FAIL("", "linux-icc* incorrectly exports some QtWebkit symbols, waiting for a fix from Intel.", Continue); |
|
446 |
# endif |
|
447 |
QVERIFY2(!isFailed, "Libraries contain non-prefixed symbols. See Debug output :)"); |
|
448 |
#else |
|
449 |
QSKIP("Linux-specific test", SkipAll); |
|
450 |
#endif |
|
451 |
} |
|
452 |
||
453 |
QTEST_MAIN(tst_Symbols) |
|
454 |
#include "tst_symbols.moc" |