fix tst_QProcess::batFiles for shadow builds

Change-Id: If7a9c9aa6ba16b7744d8ef8a66b43e40f375b5e7
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
bb10
Joerg Bornemann 2012-10-30 11:37:39 +01:00 committed by The Qt Project
parent a4aa5ea63f
commit 44e0d2b328
1 changed files with 2 additions and 2 deletions

View File

@ -532,8 +532,8 @@ void tst_QProcess::batFiles_data()
QTest::addColumn<QString>("batFile");
QTest::addColumn<QByteArray>("output");
QTest::newRow("simple") << QString::fromLatin1("testBatFiles/simple.bat") << QByteArray("Hello");
QTest::newRow("with space") << QString::fromLatin1("testBatFiles/with space.bat") << QByteArray("Hello");
QTest::newRow("simple") << QFINDTESTDATA("testBatFiles/simple.bat") << QByteArray("Hello");
QTest::newRow("with space") << QFINDTESTDATA("testBatFiles/with space.bat") << QByteArray("Hello");
}
void tst_QProcess::batFiles()