From c5d63c8f14b35dee94ef07c687629587c789ad2d Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Fri, 7 Jun 2019 15:36:27 +0200 Subject: [PATCH] Fix Windows build Change-Id: I0929c82cc3f03792627ab02bd3090dac2f997609 Reviewed-by: hjk --- tests/auto/debugger/tst_dumpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index 3b59a9cce8b..e5f48e081c2 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -94,7 +94,7 @@ static bool generateEnvironmentSettings(Utils::Environment &env, = Utils::FilePath::fromString(QString::fromLocal8Bit(qgetenv("COMSPEC"))); // Windows SDK setup scripts require command line switches for environment expansion. QString cmdArguments = " /E:ON /V:ON /c \"" + QDir::toNativeSeparators(saver.fileName()) + '"'; - run.setCommand(Utils::CommandLine(cmdPath, cmdArguments)); + run.setCommand(Utils::CommandLine(cmdPath, cmdArguments, Utils::CommandLine::Raw)); run.start(); if (!run.waitForStarted()) {