summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorSune Vuorela <sune@vuorela.dk>2015-02-02 22:30:17 +0100
committerSune Vuorela <sune@vuorela.dk>2015-02-05 21:18:26 +0000
commit14dc8870900127eb64815fac138124545e901640 (patch)
tree712e876024b5dce2d54644f84a1be02a6db384ed /tests/auto
parent99f8e817fe4434f35ce45ba22f4b7ac969c83e3b (diff)
Remove __DATE__ usage from qtbase
This message is just informal, and not really relevant to the test case. qtbase can now be built with -Werror=date-time Change-Id: Ic14289f2f801d5a6e811869e60afb9691c7ca98b Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/tools/uic/tst_uic.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/tools/uic/tst_uic.cpp b/tests/auto/tools/uic/tst_uic.cpp
index a5bffced6c..dacb5fcb61 100644
--- a/tests/auto/tools/uic/tst_uic.cpp
+++ b/tests/auto/tools/uic/tst_uic.cpp
@@ -95,8 +95,8 @@ void tst_uic::initTestCase()
const QString out = QString::fromLocal8Bit(process.readAllStandardError()).remove(QLatin1Char('\r'));
const QStringList outLines = out.split(QLatin1Char('\n'));
// Print version
- QString msg = QString::fromLatin1("uic test built %1 running in '%2' using: ").
- arg(QString::fromLatin1(__DATE__), QDir::currentPath());
+ QString msg = QString::fromLatin1("uic test running in '%1' using: ").
+ arg(QDir::currentPath());
if (!outLines.empty())
msg += outLines.front();
qDebug("%s", qPrintable(msg));