diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-12 09:31:24 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-12 09:31:24 (GMT) |
commit | acc509a77b6deeed0b3994a933d5cde291e17df6 (patch) | |
tree | 69fda8717c5c999049bb73593293a7837e11e9e8 /tests/auto/bic | |
parent | d98012baf3315fad975d0c0acbab13a54ea15caa (diff) | |
download | Qt-acc509a77b6deeed0b3994a933d5cde291e17df6.zip Qt-acc509a77b6deeed0b3994a933d5cde291e17df6.tar.gz Qt-acc509a77b6deeed0b3994a933d5cde291e17df6.tar.bz2 |
Add usefull debug output to the bic test
Diffstat (limited to 'tests/auto/bic')
-rw-r--r-- | tests/auto/bic/tst_bic.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/bic/tst_bic.cpp b/tests/auto/bic/tst_bic.cpp index 82c8dc0..8c6056e 100644 --- a/tests/auto/bic/tst_bic.cpp +++ b/tests/auto/bic/tst_bic.cpp @@ -252,6 +252,7 @@ QBic::Info tst_Bic::getCurrentInfo(const QString &libName) } if (proc.exitCode() != 0) { qWarning() << "gcc returned with" << proc.exitCode(); + qDebug() << proc.readAllStandardError(); return QBic::Info(); } @@ -268,6 +269,7 @@ QBic::Info tst_Bic::getCurrentInfo(const QString &libName) qFatal("Could not locate the GCC output file, update this test"); return QBic::Info(); } else if (files.size() > 1) { + qDebug() << files; qFatal("Located more than one output file, please clean up before running this test"); return QBic::Info(); } |