Use continue instead of next

llvm-svn: 205354
This commit is contained in:
Enrico Granata 2014-04-01 19:37:14 +00:00
parent 287e79a263
commit a4d5fc3841

View File

@ -256,7 +256,7 @@ class DynamicValueTestCase(TestBase):
# self.runCmd("frame variable")
b = self.frame().FindVariable("b").GetDynamicValue(lldb.eDynamicCanRunTarget)
self.assertTrue(b.GetNumChildren() == 0, "b has 0 children")
self.runCmd("next")
self.runCmd("continue")
# self.runCmd("frame select 0")
# self.runCmd("frame variable")
self.assertTrue(b.GetNumChildren() == 0, "b still has 0 children")