diff options
| -rw-r--r-- | lldb/test/lang/c/global_variables/TestGlobalVariables.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/test/lang/c/global_variables/TestGlobalVariables.py b/lldb/test/lang/c/global_variables/TestGlobalVariables.py index 032f979..fbecae9 100644 --- a/lldb/test/lang/c/global_variables/TestGlobalVariables.py +++ b/lldb/test/lang/c/global_variables/TestGlobalVariables.py @@ -64,6 +64,11 @@ class GlobalVariablesTestCase(TestBase): substrs = ['g_a', '123']) self.expect("target variable g_marked_spot.x", VARIABLES_DISPLAYED_CORRECTLY, substrs = ['g_marked_spot.x', '20']) + + # rdar://problem/9747668 + # runCmd: target variable g_marked_spot.y + # output: (int) g_marked_spot.y = <a.o[0x214] can't be resolved, in not currently loaded. + # > self.expect("target variable g_marked_spot.y", VARIABLES_DISPLAYED_CORRECTLY, substrs = ['g_marked_spot.y', '21']) |
