forked from OSchip/llvm-project
Revert "Disable the step over skipping calls feature since buildbots are not happy."
While this fixed the windows bot failures, it also broke all other bots. Upon closer inspection, it turns out that the windows bots were "broken" because two tests were unexpectedly passing -- i.e., the original patch (r360375) actually improved our stepping support on windows. So instead, I remove the relevant XFAILs. This reverts commit r360397. llvm-svn: 360407
This commit is contained in:
parent
c5f2544cc4
commit
21929d49d5
|
@ -17,7 +17,6 @@ class CmdPythonTestCase(TestBase):
|
|||
mydir = TestBase.compute_mydir(__file__)
|
||||
NO_DEBUG_INFO_TESTCASE = True
|
||||
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr32343")
|
||||
def test(self):
|
||||
self.build()
|
||||
self.pycmd_tests()
|
||||
|
|
|
@ -52,7 +52,6 @@ class ThreadAPITestCase(TestBase):
|
|||
self.step_out_of_malloc_into_function_b(self.exe_name)
|
||||
|
||||
@add_test_categories(['pyapi'])
|
||||
@expectedFailureAll(oslist=["windows"], bugnumber='llvm.org/pr32343')
|
||||
def test_step_over_3_times(self):
|
||||
"""Test Python SBThread.StepOver() API."""
|
||||
# We build a different executable than the default build() does.
|
||||
|
|
|
@ -1095,8 +1095,8 @@ InstructionList::GetIndexOfNextBranchInstruction(uint32_t start,
|
|||
size_t i;
|
||||
for (i = start; i < num_instructions; i++) {
|
||||
if (m_instructions[i]->DoesBranch()) {
|
||||
// if (ignore_calls && m_instructions[i]->IsCall())
|
||||
// continue;
|
||||
if (ignore_calls && m_instructions[i]->IsCall())
|
||||
continue;
|
||||
next_branch = i;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue