Updated the expected matching strings.

llvm-svn: 113755
This commit is contained in:
Johnny Chen 2010-09-13 16:45:59 +00:00
parent e47191cfe1
commit 661f8069c7
1 changed files with 4 additions and 5 deletions

View File

@ -41,12 +41,11 @@ class GlobalVariablesTestCase(TestBase):
substrs = [' resolved, hit count = 1'])
# Check that GLOBAL scopes are indicated for the variables.
self.expect("frame variable -s -a", VARIABLES_DISPLAYED_CORRECTLY,
substrs = ['GLOBAL: g_file_static_cstr',
self.expect("frame variable -s -g -a", VARIABLES_DISPLAYED_CORRECTLY,
substrs = ['GLOBAL: (char const *) g_file_static_cstr',
'"g_file_static_cstr"',
'GLOBAL: g_file_global_int',
'(int) 42',
'GLOBAL: g_file_global_cstr',
'GLOBAL: (int) g_file_global_int = 42',
'GLOBAL: (char const *) g_file_global_cstr',
'"g_file_global_cstr"'])