From c7ac64e7de90a95b0249ce1b3c26c7a324812df8 Mon Sep 17 00:00:00 2001 From: Roberto Raggi <qtc-committer@nokia.com> Date: Wed, 31 Dec 2008 10:47:02 +0100 Subject: [PATCH] Test typedefs and pointers to anonymous structs. --- .../auto/cplusplus/semantic/tst_semantic.cpp | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tests/auto/cplusplus/semantic/tst_semantic.cpp b/tests/auto/cplusplus/semantic/tst_semantic.cpp index 41d7a71d144..2da819d5af7 100644 --- a/tests/auto/cplusplus/semantic/tst_semantic.cpp +++ b/tests/auto/cplusplus/semantic/tst_semantic.cpp @@ -97,6 +97,7 @@ private slots: void nested_class_1(); void typedef_1(); void typedef_2(); + void typedef_3(); }; void tst_Semantic::function_declaration_1() @@ -295,5 +296,28 @@ void tst_Semantic::typedef_2() QVERIFY(mainFun); } +void tst_Semantic::typedef_3() +{ + QSharedPointer<Document> doc = document( +"typedef struct {\n" +" int x, y;\n" +"} *PointPtr;\n" + ); + + QCOMPARE(doc->errorCount, 0U); + QCOMPARE(doc->globals->symbolCount(), 2U); + + Class *_pointStruct= doc->globals->symbolAt(0)->asClass(); + QVERIFY(_pointStruct); + QCOMPARE(_pointStruct->memberCount(), 2U); + + Declaration *typedefPointDecl = doc->globals->symbolAt(1)->asDeclaration(); + QVERIFY(typedefPointDecl); + QVERIFY(typedefPointDecl->isTypedef()); + QVERIFY(typedefPointDecl->type()->isPointerType()); + QCOMPARE(typedefPointDecl->type()->asPointerType()->elementType()->asClass(), + _pointStruct); +} + QTEST_APPLESS_MAIN(tst_Semantic) #include "tst_semantic.moc" -- GitLab