BUG: We shouldn't be setting the HideWindow option on the test processes we create.
This commit is contained in:
parent
4eba05de42
commit
57efb4a497
|
@ -61,7 +61,6 @@ bool cmProcess::StartProcess()
|
||||||
cmsysProcess_SetWorkingDirectory(this->Process,
|
cmsysProcess_SetWorkingDirectory(this->Process,
|
||||||
this->WorkingDirectory.c_str());
|
this->WorkingDirectory.c_str());
|
||||||
}
|
}
|
||||||
cmsysProcess_SetOption(this->Process, cmsysProcess_Option_HideWindow, 1);
|
|
||||||
cmsysProcess_SetTimeout(this->Process, this->Timeout);
|
cmsysProcess_SetTimeout(this->Process, this->Timeout);
|
||||||
cmsysProcess_Execute(this->Process);
|
cmsysProcess_Execute(this->Process);
|
||||||
return (cmsysProcess_GetState(this->Process)
|
return (cmsysProcess_GetState(this->Process)
|
||||||
|
|
Loading…
Reference in New Issue