From 55c2a55a6036fa03e8a632314df36ad070c65792 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Thu, 23 Feb 2023 14:47:43 +0100 Subject: [PATCH] Tests: Fix shootout test Broke with 435a4e9dd49 long time ago. Change-Id: I1f3c88f63f6a3141c65ee0e2fdc5d8b102283618 Reviewed-by: hjk --- tests/manual/shootout/tst_codesize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/manual/shootout/tst_codesize.cpp b/tests/manual/shootout/tst_codesize.cpp index bcc454024b1..49d24e48d6e 100644 --- a/tests/manual/shootout/tst_codesize.cpp +++ b/tests/manual/shootout/tst_codesize.cpp @@ -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);