diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-10-20 21:56:26 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-10-20 21:56:26 +0000 |
commit | 9695636cdb523997a47ddde13f2c0cb504882359 (patch) | |
tree | f43d802b997b87d22fe5e98339abe734a117502b | |
parent | a9b56f68be5dcc2674048ec971af4ec1fb5b68a8 (diff) | |
download | bcm5719-llvm-9695636cdb523997a47ddde13f2c0cb504882359.tar.gz bcm5719-llvm-9695636cdb523997a47ddde13f2c0cb504882359.zip |
Add more bug info.
llvm-svn: 116950
-rw-r--r-- | lldb/test/load_unload/TestLoadUnload.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/test/load_unload/TestLoadUnload.py b/lldb/test/load_unload/TestLoadUnload.py index 051be2d1d65..bc1b4e7ce14 100644 --- a/lldb/test/load_unload/TestLoadUnload.py +++ b/lldb/test/load_unload/TestLoadUnload.py @@ -41,6 +41,9 @@ class LoadUnloadTestCase(TestBase): # Issue the 'contnue' command. We should stop agaian at a_function. # The stop reason of the thread should be breakpoint and at a_function. self.runCmd("continue") + + # rdar://problem/8508987 + # The a_function breakpoint should be encountered twice. self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT, substrs = ['state is stopped', 'a_function', |