In my effort to get tests working on Windows, I've run across an issue with test\expression_command\timeout\TestCallWithTimeout.py :: TestCallWithTimeout.ExprCommandWithTimeoutsTestCase<div><br></div><div>This test creates a target and immediately puts a breakpoint on it before attempting to launch the process.  Is this something that is supposed to work?  BreakpointLocation::ResolveBreakpointSite() contains this line:</div><div><br></div><div><div>    Process *process = m_owner.GetTarget().GetProcessSP().get();<br></div><div>    if (process == NULL)</div><div>        return false;</div><div><br></div></div><div>So naturally the breakpoint site cannot be resolved because there is no process.  The end result of this is that this breakpoint never gets hit and the test fails.</div><div><br></div><div>Presumably this test works on other platforms, so any tips as to where I should look to track down this bug on Windows?</div>