summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/tst_moc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/moc/tst_moc.cpp')
-rw-r--r--tests/auto/tools/moc/tst_moc.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/auto/tools/moc/tst_moc.cpp b/tests/auto/tools/moc/tst_moc.cpp
index 15e1bc0620..f0d1934a93 100644
--- a/tests/auto/tools/moc/tst_moc.cpp
+++ b/tests/auto/tools/moc/tst_moc.cpp
@@ -555,6 +555,7 @@ private slots:
void autoMethodArgumentMetaTypeRegistration();
void parseDefines();
void preprocessorOnly();
+ void unterminatedFunctionMacro();
signals:
void sigWithUnsignedArg(unsigned foo);
@@ -2802,6 +2803,26 @@ void tst_Moc::preprocessorOnly()
#endif
}
+
+void tst_Moc::unterminatedFunctionMacro()
+{
+#ifdef MOC_CROSS_COMPILED
+ QSKIP("Not tested when cross-compiled");
+#endif
+#if defined(Q_OS_LINUX) && defined(Q_CC_GNU) && !defined(QT_NO_PROCESS)
+ QProcess proc;
+ proc.start("moc", QStringList() << "-E" << srcify("/unterminated-function-macro.h"));
+ QVERIFY(proc.waitForFinished());
+ QCOMPARE(proc.exitCode(), 1);
+ QCOMPARE(proc.readAllStandardOutput(), QByteArray());
+ QByteArray errorOutput = proc.readAllStandardError();
+ QVERIFY(!errorOutput.isEmpty());
+ QVERIFY(errorOutput.contains("missing ')' in macro usage"));
+#else
+ QSKIP("Only tested on linux/gcc");
+#endif
+}
+
QTEST_MAIN(tst_Moc)
#include "tst_moc.moc"