forked from OSchip/llvm-project
Changed 'frame variable' output to match '(const char *)' instead of '(char const *)'.
llvm-svn: 114649
This commit is contained in:
parent
3e84caaebb
commit
0a241de067
|
@ -42,11 +42,11 @@ class GlobalVariablesTestCase(TestBase):
|
|||
|
||||
# Check that GLOBAL scopes are indicated for the variables.
|
||||
self.expect("frame variable -s -g -a", VARIABLES_DISPLAYED_CORRECTLY,
|
||||
substrs = ['GLOBAL: (char const *) g_file_static_cstr',
|
||||
'"g_file_static_cstr"',
|
||||
'GLOBAL: (int) g_file_global_int = 42',
|
||||
'GLOBAL: (char const *) g_file_global_cstr',
|
||||
'"g_file_global_cstr"'])
|
||||
substrs = ['GLOBAL: (int) g_file_global_int = 42',
|
||||
'GLOBAL: (const char *) g_file_global_cstr',
|
||||
'"g_file_global_cstr"',
|
||||
'GLOBAL: (const char *) g_file_static_cstr',
|
||||
'"g_file_static_cstr"'])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in New Issue