Tests: Fix shootout test

Broke with 435a4e9dd4 long time ago.

Change-Id: I1f3c88f63f6a3141c65ee0e2fdc5d8b102283618
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Christian Stenger
2023-02-23 14:47:43 +01:00
parent be138dee10
commit 55c2a55a60

View File

@@ -241,7 +241,7 @@ void tst_CodeSize::codesize()
#endif
const int index = suite.cmd.indexOf(' ');
QString command = suite.cmd.left(index);
arguments = QString::fromLatin1(suite.cmd.mid(index + 1)) + arguments;
arguments = QString::fromLatin1(suite.cmd.mid(index + 1)) + ' ' + arguments;
QProcess final;
final.setWorkingDirectory(t->buildPath);
final.setProcessEnvironment(m_env);