diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-01-06 13:17:57 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2010-01-06 18:16:22 (GMT) |
commit | 40e3c68a38152ecdc354a2d503490f9b0ff49740 (patch) | |
tree | 3d5a51a177f35700dc2a0ef750689a9d726e0dfb /tests/auto/linguist/lupdate/testlupdate.cpp | |
parent | a54a8961bad16c55bd0a56896dec42de875cc0b4 (diff) | |
download | Qt-40e3c68a38152ecdc354a2d503490f9b0ff49740.zip Qt-40e3c68a38152ecdc354a2d503490f9b0ff49740.tar.gz Qt-40e3c68a38152ecdc354a2d503490f9b0ff49740.tar.bz2 |
don't use qmake for test setup
this makes the tests rather significantly faster
Diffstat (limited to 'tests/auto/linguist/lupdate/testlupdate.cpp')
-rw-r--r-- | tests/auto/linguist/lupdate/testlupdate.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/auto/linguist/lupdate/testlupdate.cpp b/tests/auto/linguist/lupdate/testlupdate.cpp index d43fbc4..877959a 100644 --- a/tests/auto/linguist/lupdate/testlupdate.cpp +++ b/tests/auto/linguist/lupdate/testlupdate.cpp @@ -58,7 +58,6 @@ TestLUpdate::TestLUpdate() childProc = 0; QString binPath = QLibraryInfo::location(QLibraryInfo::BinariesPath); m_cmdLupdate = binPath + QLatin1String("/lupdate"); - m_cmdQMake = binPath + QLatin1String("/qmake"); } TestLUpdate::~TestLUpdate() @@ -149,10 +148,3 @@ bool TestLUpdate::updateProFile(const QString &arguments) QStringList args = arguments.split(QChar(' ')); return runChild( true, m_cmdLupdate, args ); } - -bool TestLUpdate::qmake() -{ - QStringList args; - args << "-r"; - return runChild(true, m_cmdQMake, args); -} |