summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@theqtcompany.com>2015-11-17 15:38:23 +0100
committerErik Verbruggen <erik.verbruggen@theqtcompany.com>2015-11-18 12:16:54 +0000
commiteef079f680e76257a2b658442f4cc2c37a6a5261 (patch)
tree3c1c325643a45a9921f21414963fdddf6b66b11d /tests
parent1067fef8e5a7f70bf30dde603322fc1efb24c448 (diff)
Build fixes.
Change-Id: I9f7cf3f50a1ddf787e42c71aada8f6866df573b1 Reviewed-by: Erik Verbruggen <erik.verbruggen@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/parser/tst_parser.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/parser/tst_parser.cpp b/tests/auto/parser/tst_parser.cpp
index 60324a1..a4ad463 100644
--- a/tests/auto/parser/tst_parser.cpp
+++ b/tests/auto/parser/tst_parser.cpp
@@ -67,7 +67,9 @@ void tst_Parser::error()
QVector<QScxmlError> errors = stateMachine->errors();
if (errors.count() != expectedErrors.count()) {
- qDebug() << errors;
+ foreach (const QScxmlError &error, errors) {
+ qDebug() << error.toString();
+ }
}
QCOMPARE(errors.count(), expectedErrors.count());