diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 18:01:57 +0000 | 
| commit | 88c643b6fec27eec436c8d138fee6346e92337d6 (patch) | |
| tree | 82cd13b2f3cde1c9e5f79689ba4e6ba67694843f /packages/Python/lldbsuite/test/tools/lldb-mi/variable | |
| parent | 94994d372d014ce4c8758b9605d63fae651bd8aa (diff) | |
Notes
Diffstat (limited to 'packages/Python/lldbsuite/test/tools/lldb-mi/variable')
4 files changed, 0 insertions, 869 deletions
diff --git a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/Makefile b/packages/Python/lldbsuite/test/tools/lldb-mi/variable/Makefile deleted file mode 100644 index 314f1cb2f077..000000000000 --- a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/Makefile +++ /dev/null @@ -1,5 +0,0 @@ -LEVEL = ../../../make - -CXX_SOURCES := main.cpp - -include $(LEVEL)/Makefile.rules diff --git a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py b/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py deleted file mode 100644 index cf1da5bae9ce..000000000000 --- a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py +++ /dev/null @@ -1,247 +0,0 @@ -# coding=utf8 -""" -Test lldb-mi -gdb-set and -gdb-show commands for 'print option-name'. -""" - -from __future__ import print_function - - -import lldbmi_testcase -from lldbsuite.test.decorators import * -from lldbsuite.test.lldbtest import * -from lldbsuite.test import lldbutil - - -class MiGdbSetShowTestCase(lldbmi_testcase.MiTestCaseBase): - -    mydir = TestBase.compute_mydir(__file__) - -    # evaluates array when char-array-as-string is off -    def eval_and_check_array(self, var, typ, length): -        self.runCmd("-var-create - * %s" % var) -        self.expect( -            '\^done,name="var\d+",numchild="%d",value="\[%d\]",type="%s \[%d\]",thread-id="1",has_more="0"' % -            (length, length, typ, length)) - -    # evaluates any type which can be represented as string of characters -    def eval_and_match_string(self, var, value, typ): -        value = value.replace("\\", "\\\\").replace("\"", "\\\"") -        self.runCmd("-var-create - * " + var) -        self.expect( -            '\^done,name="var\d+",numchild="[0-9]+",value="%s",type="%s",thread-id="1",has_more="0"' % -            (value, typ)) - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi working on Windows -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    def test_lldbmi_gdb_set_show_print_char_array_as_string(self): -        """Test that 'lldb-mi --interpreter' can print array of chars as string.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to BP_gdb_set_show_print_char_array_as_string_test -        line = line_number( -            'main.cpp', -            '// BP_gdb_set_show_print_char_array_as_string_test') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Test that default print char-array-as-string value is "off" -        self.runCmd("-gdb-show print char-array-as-string") -        self.expect("\^done,value=\"off\"") - -        # Test that a char* is expanded to string when print -        # char-array-as-string is "off" -        self.eval_and_match_string( -            "cp", -            r'0x[0-9a-f]+ \"\\t\\\"hello\\\"\\n\"', -            r'const char \*') - -        # Test that a char[] isn't expanded to string when print -        # char-array-as-string is "off" -        self.eval_and_check_array("ca", "const char", 10) - -        # Test that a char16_t* is expanded to string when print -        # char-array-as-string is "off" -        self.eval_and_match_string( -            "u16p", -            r'0x[0-9a-f]+ u\"\\t\\\"hello\\\"\\n\"', -            r'const char16_t \*') - -        # Test that a char16_t[] isn't expanded to string when print -        # char-array-as-string is "off" -        self.eval_and_check_array("u16a", "const char16_t", 10) - -        # Test that a char32_t* is expanded to string when print -        # char-array-as-string is "off" -        self.eval_and_match_string( -            "u32p", -            r'0x[0-9a-f]+ U\"\\t\\\"hello\\\"\\n\"', -            r'const char32_t \*') - -        # Test that a char32_t[] isn't expanded to string when print -        # char-array-as-string is "off" -        self.eval_and_check_array("u32a", "const char32_t", 10) - -        # Test that -gdb-set can set print char-array-as-string flag -        self.runCmd("-gdb-set print char-array-as-string on") -        self.expect("\^done") -        self.runCmd("-gdb-set print char-array-as-string 1") -        self.expect("\^done") -        self.runCmd("-gdb-show print char-array-as-string") -        self.expect("\^done,value=\"on\"") - -        # Test that a char* with escape chars is expanded to string when print -        # char-array-as-string is "on" -        self.eval_and_match_string( -            "cp", -            r'0x[0-9a-f]+ \"\\t\\\"hello\\\"\\n\"', -            r'const char \*') - -        # Test that a char[] with escape chars is expanded to string when print -        # char-array-as-string is "on" -        self.eval_and_match_string( -            "ca", -            r'\"\\t\\\"hello\\\"\\n\"', -            r'const char \[10\]') - -        # Test that a char16_t* with escape chars is expanded to string when -        # print char-array-as-string is "on" -        self.eval_and_match_string( -            "u16p", -            r'0x[0-9a-f]+ u\"\\t\\\"hello\\\"\\n\"', -            r'const char16_t \*') - -        # Test that a char16_t[] with escape chars is expanded to string when -        # print char-array-as-string is "on" -        self.eval_and_match_string( -            "u16a", -            r'u\"\\t\\\"hello\\\"\\n\"', -            r'const char16_t \[10\]') - -        # Test that a char32_t* with escape chars is expanded to string when -        # print char-array-as-string is "on" -        self.eval_and_match_string( -            "u32p", -            r'0x[0-9a-f]+ U\"\\t\\\"hello\\\"\\n\"', -            r'const char32_t \*') - -        # Test that a char32_t[] with escape chars is expanded to string when -        # print char-array-as-string is "on" -        self.eval_and_match_string( -            "u32a", -            r'U\"\\t\\\"hello\\\"\\n\"', -            r'const char32_t \[10\]') - -        # Test russian unicode strings -        self.eval_and_match_string( -            "u16p_rus", -            r'0x[0-9a-f]+ u\"\\\\Аламо-сквер\"', -            r'const char16_t \*') -        self.eval_and_match_string( -            "u16a_rus", -            r'u\"\\\\Бейвью\"', -            r'const char16_t \[8\]') -        self.eval_and_match_string( -            "u32p_rus", -            r'0x[0-9a-f]+ U\"\\\\Чайнатаун\"', -            r'const char32_t \*') -        self.eval_and_match_string( -            "u32a_rus", -            r'U\"\\\\Догпатч\"', -            r'const char32_t \[9\]') - -        # Test that -gdb-set print char-array-as-string fails if "on"/"off" -        # isn't specified -        self.runCmd("-gdb-set print char-array-as-string") -        self.expect( -            "\^error,msg=\"The request ''print' expects option-name and \"on\" or \"off\"' failed.\"") - -        # Test that -gdb-set print char-array-as-string fails when option is -        # unknown -        self.runCmd("-gdb-set print char-array-as-string unknown") -        self.expect( -            "\^error,msg=\"The request ''print' expects option-name and \"on\" or \"off\"' failed.\"") - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi working on Windows -    @expectedFailureAll(compiler="gcc", bugnumber="llvm.org/pr23357") -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    def test_lldbmi_gdb_set_show_print_aggregate_field_names(self): -        """Test that 'lldb-mi --interpreter' can expand aggregates everywhere.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to BP_gdb_set_show_print_aggregate_field_names -        line = line_number( -            'main.cpp', -            '// BP_gdb_set_show_print_aggregate_field_names') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Test that default print aggregatep-field-names value is "on" -        self.runCmd("-gdb-show print aggregate-field-names") -        self.expect("\^done,value=\"on\"") - -        # Set print expand-aggregates flag to "on" -        self.runCmd("-gdb-set print expand-aggregates on") -        self.expect("\^done") - -        # Test that composite type is expanded with field name when print -        # aggregate-field-names is "on" -        self.runCmd("-var-create var1 * complx") -        self.expect( -            "\^done,name=\"var1\",numchild=\"3\",value=\"{i = 3, inner = {l = 3}, complex_ptr = 0x[0-9a-f]+}\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"") - -        # Test that composite type[] is expanded with field name when print -        # aggregate-field-names is "on" -        self.runCmd("-var-create var2 * complx_array") -        self.expect( -            "\^done,name=\"var2\",numchild=\"2\",value=\"{\[0\] = {i = 4, inner = {l = 4}, complex_ptr = 0x[0-9a-f]+}, \[1\] = {i = 5, inner = {l = 5}, complex_ptr = 0x[0-9a-f]+}}\",type=\"complex_type \[2\]\",thread-id=\"1\",has_more=\"0\"") - -        # Test that -gdb-set can set print aggregate-field-names flag -        self.runCmd("-gdb-set print aggregate-field-names off") -        self.expect("\^done") -        self.runCmd("-gdb-set print aggregate-field-names 0") -        self.expect("\^done") -        self.runCmd("-gdb-show print aggregate-field-names") -        self.expect("\^done,value=\"off\"") - -        # Test that composite type is expanded without field name when print -        # aggregate-field-names is "off" -        self.runCmd("-var-create var3 * complx") -        self.expect( -            "\^done,name=\"var3\",numchild=\"3\",value=\"{3,\{3\},0x[0-9a-f]+}\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"") - -        # Test that composite type[] is expanded without field name when print -        # aggregate-field-names is "off" -        self.runCmd("-var-create var4 * complx_array") -        self.expect( -            "\^done,name=\"var4\",numchild=\"2\",value=\"{{4,\{4\},0x[0-9a-f]+},{5,\{5\},0x[0-9a-f]+}}\",type=\"complex_type \[2\]\",thread-id=\"1\",has_more=\"0\"") - -        # Test that -gdb-set print aggregate-field-names fails if "on"/"off" -        # isn't specified -        self.runCmd("-gdb-set print aggregate-field-names") -        self.expect( -            "\^error,msg=\"The request ''print' expects option-name and \"on\" or \"off\"' failed.\"") - -        # Test that -gdb-set print aggregate-field-names fails when option is -        # unknown -        self.runCmd("-gdb-set print aggregate-field-names unknown") -        self.expect( -            "\^error,msg=\"The request ''print' expects option-name and \"on\" or \"off\"' failed.\"") diff --git a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiVar.py b/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiVar.py deleted file mode 100644 index 5ef7d11b8ac0..000000000000 --- a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiVar.py +++ /dev/null @@ -1,465 +0,0 @@ -""" -Test lldb-mi -var-xxx commands. -""" - -from __future__ import print_function - - -import lldbmi_testcase -from lldbsuite.test.decorators import * -from lldbsuite.test.lldbtest import * -from lldbsuite.test import lldbutil - - -class MiVarTestCase(lldbmi_testcase.MiTestCaseBase): - -    mydir = TestBase.compute_mydir(__file__) - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    @skipIfDarwin -    def test_lldbmi_eval(self): -        """Test that 'lldb-mi --interpreter' works for evaluating.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to program return -        line = line_number('main.cpp', '// BP_return') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Print non-existant variable -        self.runCmd("-var-create var1 * undef") -        self.expect( -            "\^error,msg=\"error: use of undeclared identifier \'undef\'\\\\n\"") -        self.runCmd("-data-evaluate-expression undef") -        self.expect( -            "\^error,msg=\"error: use of undeclared identifier \'undef\'\\\\n\"") - -        # Print global "g_MyVar", modify, delete and create again -        self.runCmd("-data-evaluate-expression g_MyVar") -        self.expect("\^done,value=\"3\"") -        self.runCmd("-var-create var2 * g_MyVar") -        self.expect( -            "\^done,name=\"var2\",numchild=\"0\",value=\"3\",type=\"int\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-evaluate-expression var2") -        self.expect("\^done,value=\"3\"") -        self.runCmd("-var-show-attributes var2") -        self.expect("\^done,status=\"editable\"") -        self.runCmd("-var-list-children var2") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") -        # Ensure -var-list-children also works with quotes -        self.runCmd("-var-list-children \"var2\"") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") -        self.runCmd("-data-evaluate-expression \"g_MyVar=30\"") -        self.expect("\^done,value=\"30\"") -        self.runCmd("-var-update --all-values var2") -        # self.expect("\^done,changelist=\[\{name=\"var2\",value=\"30\",in_scope=\"true\",type_changed=\"false\",has_more=\"0\"\}\]") -        # FIXME -var-update doesn't work -        self.runCmd("-var-delete var2") -        self.expect("\^done") -        self.runCmd("-var-create var2 * g_MyVar") -        self.expect( -            "\^done,name=\"var2\",numchild=\"0\",value=\"30\",type=\"int\",thread-id=\"1\",has_more=\"0\"") - -        # Print static "s_MyVar", modify, delete and create again -        self.runCmd("-data-evaluate-expression s_MyVar") -        self.expect("\^done,value=\"30\"") -        self.runCmd("-var-create var3 * s_MyVar") -        self.expect( -            "\^done,name=\"var3\",numchild=\"0\",value=\"30\",type=\"int\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-evaluate-expression var3") -        self.expect("\^done,value=\"30\"") -        self.runCmd("-var-show-attributes var3") -        self.expect("\^done,status=\"editable\"") -        self.runCmd("-var-list-children var3") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") -        self.runCmd("-data-evaluate-expression \"s_MyVar=3\"") -        self.expect("\^done,value=\"3\"") -        self.runCmd("-var-update --all-values var3") -        # self.expect("\^done,changelist=\[\{name=\"var3\",value=\"3\",in_scope=\"true\",type_changed=\"false\",has_more=\"0\"\}\]") -        # FIXME -var-update doesn't work -        self.runCmd("-var-delete var3") -        self.expect("\^done") -        self.runCmd("-var-create var3 * s_MyVar") -        self.expect( -            "\^done,name=\"var3\",numchild=\"0\",value=\"3\",type=\"int\",thread-id=\"1\",has_more=\"0\"") - -        # Print local "b", modify, delete and create again -        self.runCmd("-data-evaluate-expression b") -        self.expect("\^done,value=\"20\"") -        self.runCmd("-var-create var4 * b") -        self.expect( -            "\^done,name=\"var4\",numchild=\"0\",value=\"20\",type=\"int\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-evaluate-expression var4") -        self.expect("\^done,value=\"20\"") -        self.runCmd("-var-show-attributes var4") -        self.expect("\^done,status=\"editable\"") -        self.runCmd("-var-list-children var4") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") -        self.runCmd("-data-evaluate-expression \"b=2\"") -        self.expect("\^done,value=\"2\"") -        self.runCmd("-var-update --all-values var4") -        # self.expect("\^done,changelist=\[\{name=\"var4\",value=\"2\",in_scope=\"true\",type_changed=\"false\",has_more=\"0\"\}\]") -        # FIXME -var-update doesn't work -        self.runCmd("-var-delete var4") -        self.expect("\^done") -        self.runCmd("-var-create var4 * b") -        self.expect( -            "\^done,name=\"var4\",numchild=\"0\",value=\"2\",type=\"int\",thread-id=\"1\",has_more=\"0\"") - -        # Print temp "a + b" -        self.runCmd("-data-evaluate-expression \"a + b\"") -        self.expect("\^done,value=\"12\"") -        self.runCmd("-var-create var5 * \"a + b\"") -        self.expect( -            "\^done,name=\"var5\",numchild=\"0\",value=\"12\",type=\"int\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-evaluate-expression var5") -        self.expect("\^done,value=\"12\"") -        self.runCmd("-var-show-attributes var5") -        self.expect("\^done,status=\"editable\"")  # FIXME editable or not? -        self.runCmd("-var-list-children var5") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") - -        # Print argument "argv[0]" -        self.runCmd("-data-evaluate-expression \"argv[0]\"") -        self.expect( -            "\^done,value=\"0x[0-9a-f]+ \\\\\\\".*?%s\\\\\\\"\"" % -            self.myexe) -        self.runCmd("-var-create var6 * \"argv[0]\"") -        self.expect( -            "\^done,name=\"var6\",numchild=\"1\",value=\"0x[0-9a-f]+ \\\\\\\".*?%s\\\\\\\"\",type=\"const char \*\",thread-id=\"1\",has_more=\"0\"" % -            self.myexe) -        self.runCmd("-var-evaluate-expression var6") -        self.expect( -            "\^done,value=\"0x[0-9a-f]+ \\\\\\\".*?%s\\\\\\\"\"" % -            self.myexe) -        self.runCmd("-var-show-attributes var6") -        self.expect("\^done,status=\"editable\"") -        self.runCmd("-var-list-children --all-values var6") -        # FIXME: The name below is not correct. It should be "var.*argv[0]". -        # FIXME -var-list-children shows invalid thread-id -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var6\.\*\$[0-9]+\",exp=\"\*\$[0-9]+\",numchild=\"0\",type=\"const char\",thread-id=\"4294967295\",value=\"47 '/'\",has_more=\"0\"\}\],has_more=\"0\"") - -        # Print an expression with spaces and optional arguments -        self.runCmd("-data-evaluate-expression \"a + b\"") -        self.expect("\^done,value=\"12\"") -        self.runCmd("-var-create var7 * \"a + b\" --thread 1 --frame 0") -        self.expect( -            "\^done,name=\"var7\",numchild=\"0\",value=\"12\",type=\"int\",thread-id=\"1\",has_more=\"0\"") - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots -    @skipIfDarwin -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    def test_lldbmi_var_update(self): -        """Test that 'lldb-mi --interpreter' works for -var-update.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to BP_var_update_test_init -        line = line_number('main.cpp', '// BP_var_update_test_init') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Setup variables -        self.runCmd("-var-create var_l * l") -        self.expect( -            "\^done,name=\"var_l\",numchild=\"0\",value=\"1\",type=\"long\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-create var_complx * complx") -        self.expect( -            "\^done,name=\"var_complx\",numchild=\"3\",value=\"\{\.\.\.\}\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-create var_complx_array * complx_array") -        self.expect( -            "\^done,name=\"var_complx_array\",numchild=\"2\",value=\"\[2\]\",type=\"complex_type \[2\]\",thread-id=\"1\",has_more=\"0\"") - -        # Go to BP_var_update_test_l -        line = line_number('main.cpp', '// BP_var_update_test_l') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"2\"") -        self.runCmd("-exec-continue") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Test that var_l was updated -        self.runCmd("-var-update --all-values var_l") -        self.expect( -            "\^done,changelist=\[\{name=\"var_l\",value=\"0\",in_scope=\"true\",type_changed=\"false\",has_more=\"0\"\}\]") - -        # Go to BP_var_update_test_complx -        line = line_number('main.cpp', '// BP_var_update_test_complx') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"3\"") -        self.runCmd("-exec-continue") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Test that var_complx was updated -        self.runCmd("-var-update --all-values var_complx") -        self.expect( -            "\^done,changelist=\[\{name=\"var_complx\",value=\"\{\.\.\.\}\",in_scope=\"true\",type_changed=\"false\",has_more=\"0\"\}\]") - -        # Go to BP_var_update_test_complx_array -        line = line_number('main.cpp', '// BP_var_update_test_complx_array') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"4\"") -        self.runCmd("-exec-continue") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Test that var_complex_array was updated -        self.runCmd("-var-update --all-values var_complx_array") -        self.expect( -            "\^done,changelist=\[\{name=\"var_complx_array\",value=\"\[2\]\",in_scope=\"true\",type_changed=\"false\",has_more=\"0\"\}\]") - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    @skipIfDarwin -    def test_lldbmi_var_create_register(self): -        """Test that 'lldb-mi --interpreter' works for -var-create $regname.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to main -        self.runCmd("-break-insert -f main") -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Find name of register 0 -        self.runCmd("-data-list-register-names 0") -        self.expect("\^done,register-names=\[\".+?\"\]") -        register_name = self.child.after.split("\"")[1] - -        # Create variable for register 0 -        # Note that message is different in Darwin and Linux: -        # Darwin: "^done,name=\"var_reg\",numchild=\"0\",value=\"0x[0-9a-f]+\",type=\"unsigned long\",thread-id=\"1\",has_more=\"0\" -        # Linux: -        # "^done,name=\"var_reg\",numchild=\"0\",value=\"0x[0-9a-f]+\",type=\"unsigned -        # int\",thread-id=\"1\",has_more=\"0\" -        self.runCmd("-var-create var_reg * $%s" % register_name) -        self.expect( -            "\^done,name=\"var_reg\",numchild=\"0\",value=\"0x[0-9a-f]+\",type=\"unsigned (long|int)\",thread-id=\"1\",has_more=\"0\"") - -        # Assign value to variable -        self.runCmd("-var-assign var_reg \"6\"") -        # FIXME: the output has different format for 32bit and 64bit values -        self.expect("\^done,value=\"0x0*?6\"") - -        # Assert register 0 updated -        self.runCmd("-data-list-register-values d 0") -        self.expect("\^done,register-values=\[{number=\"0\",value=\"6\"") - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi tests working on Windows -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    @skipIfDarwin -    def test_lldbmi_var_list_children(self): -        """Test that 'lldb-mi --interpreter' works for -var-list-children.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to BP_var_list_children_test -        line = line_number('main.cpp', '// BP_var_list_children_test') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Create variable -        self.runCmd("-var-create var_complx * complx") -        self.expect( -            "\^done,name=\"var_complx\",numchild=\"3\",value=\"\{\.\.\.\}\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-create var_complx_array * complx_array") -        self.expect( -            "\^done,name=\"var_complx_array\",numchild=\"2\",value=\"\[2\]\",type=\"complex_type \[2\]\",thread-id=\"1\",has_more=\"0\"") -        self.runCmd("-var-create var_pcomplx * pcomplx") -        self.expect( -            "\^done,name=\"var_pcomplx\",numchild=\"2\",value=\"\{\.\.\.\}\",type=\"pcomplex_type\",thread-id=\"1\",has_more=\"0\"") - -        # Test that -var-evaluate-expression can evaluate the children of -        # created varobj -        self.runCmd("-var-list-children var_complx") -        self.runCmd("-var-evaluate-expression var_complx.i") -        self.expect("\^done,value=\"3\"") -        self.runCmd("-var-list-children var_complx_array") -        self.runCmd("-var-evaluate-expression var_complx_array.[0]") -        self.expect("\^done,value=\"\{...\}\"") -        self.runCmd("-var-list-children var_pcomplx") -        self.runCmd("-var-evaluate-expression var_pcomplx.complex_type") -        self.expect("\^done,value=\"\{...\}\"") - -        # Test that -var-list-children lists empty children if range is empty -        # (and that print-values is optional) -        self.runCmd("-var-list-children var_complx 0 0") -        self.expect("\^done,numchild=\"0\",has_more=\"1\"") -        self.runCmd("-var-list-children var_complx 99 0") -        self.expect("\^done,numchild=\"0\",has_more=\"1\"") -        self.runCmd("-var-list-children var_complx 99 3") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") - -        # Test that -var-list-children lists all children with their values -        # (and that from and to are optional) -        self.runCmd("-var-list-children --all-values var_complx") -        self.expect( -            "\^done,numchild=\"3\",children=\[child=\{name=\"var_complx\.i\",exp=\"i\",numchild=\"0\",type=\"int\",thread-id=\"1\",value=\"3\",has_more=\"0\"\},child=\{name=\"var_complx\.inner\",exp=\"inner\",numchild=\"1\",type=\"complex_type::\(anonymous struct\)\",thread-id=\"1\",value=\"\{\.\.\.\}\",has_more=\"0\"\},child=\{name=\"var_complx\.complex_ptr\",exp=\"complex_ptr\",numchild=\"3\",type=\"complex_type \*\",thread-id=\"1\",value=\"0x[0-9a-f]+\",has_more=\"0\"\}\],has_more=\"0\"") -        self.runCmd("-var-list-children --simple-values var_complx_array") -        self.expect( -            "\^done,numchild=\"2\",children=\[child=\{name=\"var_complx_array\.\[0\]\",exp=\"\[0\]\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"\},child=\{name=\"var_complx_array\.\[1\]\",exp=\"\[1\]\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"0\"") -        self.runCmd("-var-list-children 0 var_pcomplx") -        self.expect( -            "\^done,numchild=\"2\",children=\[child=\{name=\"var_pcomplx\.complex_type\",exp=\"complex_type\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"\},child={name=\"var_pcomplx\.complx\",exp=\"complx\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"0\"") - -        # Test that -var-list-children lists children without values -        self.runCmd("-var-list-children 0 var_complx 0 1") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx\.i\",exp=\"i\",numchild=\"0\",type=\"int\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"1\"") -        self.runCmd("-var-list-children --no-values var_complx 0 1") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx\.i\",exp=\"i\",numchild=\"0\",type=\"int\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"1\"") -        self.runCmd("-var-list-children --no-values var_complx_array 0 1") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx_array\.\[0\]\",exp=\"\[0\]\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"1\"") -        self.runCmd("-var-list-children --no-values var_pcomplx 0 1") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_pcomplx\.complex_type\",exp=\"complex_type\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"1\"") - -        # Test that -var-list-children lists children with all values -        self.runCmd("-var-list-children 1 var_complx 1 2") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx\.inner\",exp=\"inner\",numchild=\"1\",type=\"complex_type::\(anonymous struct\)\",thread-id=\"1\",value=\"\{\.\.\.\}\",has_more=\"0\"\}\],has_more=\"1\"") -        self.runCmd("-var-list-children --all-values var_complx 1 2") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx\.inner\",exp=\"inner\",numchild=\"1\",type=\"complex_type::\(anonymous struct\)\",thread-id=\"1\",value=\"\{\.\.\.\}\",has_more=\"0\"\}\],has_more=\"1\"") -        self.runCmd("-var-list-children --all-values var_complx_array 1 2") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx_array\.\[1\]\",exp=\"\[1\]\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",value=\"\{\.\.\.\}\",has_more=\"0\"\}\],has_more=\"0\"") -        self.runCmd("-var-list-children --all-values var_pcomplx 1 2") -        self.expect( -            "\^done,numchild=\"1\",children=\[child={name=\"var_pcomplx\.complx\",exp=\"complx\",numchild=\"3\",type=\"complex_type\",thread-id=\"1\",value=\"\{\.\.\.\}\",has_more=\"0\"\}\],has_more=\"0\"") - -        # Test that -var-list-children lists children with simple values -        self.runCmd("-var-list-children 2 var_complx 2 4") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx\.complex_ptr\",exp=\"complex_ptr\",numchild=\"3\",type=\"complex_type \*\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"0\"") -        self.runCmd("-var-list-children --simple-values var_complx 2 4") -        self.expect( -            "\^done,numchild=\"1\",children=\[child=\{name=\"var_complx\.complex_ptr\",exp=\"complex_ptr\",numchild=\"3\",type=\"complex_type \*\",thread-id=\"1\",has_more=\"0\"\}\],has_more=\"0\"") -        self.runCmd("-var-list-children --simple-values var_complx_array 2 4") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") -        self.runCmd("-var-list-children --simple-values var_pcomplx 2 4") -        self.expect("\^done,numchild=\"0\",has_more=\"0\"") - -        # Test that an invalid from is handled -        # FIXME: -1 is treated as unsigned int -        self.runCmd("-var-list-children 0 var_complx -1 0") -        #self.expect("\^error,msg=\"Command 'var-list-children'\. Variable children range invalid\"") - -        # Test that an invalid to is handled -        # FIXME: -1 is treated as unsigned int -        self.runCmd("-var-list-children 0 var_complx 0 -1") -        #self.expect("\^error,msg=\"Command 'var-list-children'\. Variable children range invalid\"") - -        # Test that a missing low-frame or high-frame is handled -        self.runCmd("-var-list-children 0 var_complx 0") -        self.expect( -            "\^error,msg=\"Command 'var-list-children'. Variable children range invalid\"") - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi working on Windows -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    @skipIfDarwin -    def test_lldbmi_var_create_for_stl_types(self): -        """Test that 'lldb-mi --interpreter' print summary for STL types.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to BP_gdb_set_show_print_char_array_as_string_test -        line = line_number('main.cpp', '// BP_cpp_stl_types_test') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Test for std::string -        self.runCmd("-var-create - * std_string") -        self.expect( -            '\^done,name="var\d+",numchild="[0-9]+",value="\\\\"hello\\\\"",type="std::[\S]*?string",thread-id="1",has_more="0"') - -    @skipIfWindows  # llvm.org/pr24452: Get lldb-mi working on Windows -    @skipIfFreeBSD  # llvm.org/pr22411: Failure presumably due to known thread races -    @skipIfLinux  # llvm.org/pr22841: lldb-mi tests fail on all Linux buildbots -    @skipIfRemote   # We do not currently support remote debugging via the MI. -    @skipIfDarwin -    def test_lldbmi_var_create_for_unnamed_objects(self): -        """Test that 'lldb-mi --interpreter' can expand unnamed structures and unions.""" - -        self.spawnLldbMi(args=None) - -        # Load executable -        self.runCmd("-file-exec-and-symbols %s" % self.myexe) -        self.expect("\^done") - -        # Run to breakpoint -        line = line_number('main.cpp', '// BP_unnamed_objects_test') -        self.runCmd("-break-insert main.cpp:%d" % line) -        self.expect("\^done,bkpt={number=\"1\"") -        self.runCmd("-exec-run") -        self.expect("\^running") -        self.expect("\*stopped,reason=\"breakpoint-hit\"") - -        # Evaluate struct_with_unions type and its children -        self.runCmd("-var-create v0 * swu") -        self.expect( -            '\^done,name="v0",numchild="2",value="\{\.\.\.\}",type="struct_with_unions",thread-id="1",has_more="0"') - -        self.runCmd("-var-list-children v0") - -        # inspect the first unnamed union -        self.runCmd("-var-list-children v0.$0") -        self.runCmd("-var-evaluate-expression v0.$0.u_i") -        self.expect('\^done,value="1"') - -        # inspect the second unnamed union -        self.runCmd("-var-list-children v0.$1") -        self.runCmd("-var-evaluate-expression v0.$1.u1") -        self.expect('\^done,value="-1"') -        # inspect unnamed structure -        self.runCmd("-var-list-children v0.$1.$1") -        self.runCmd("-var-evaluate-expression v0.$1.$1.s1") -        self.expect('\^done,value="-1"') diff --git a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/main.cpp b/packages/Python/lldbsuite/test/tools/lldb-mi/variable/main.cpp deleted file mode 100644 index 8c79539d4d85..000000000000 --- a/packages/Python/lldbsuite/test/tools/lldb-mi/variable/main.cpp +++ /dev/null @@ -1,152 +0,0 @@ -//===-- main.cpp ------------------------------------------------*- C++ -*-===// -// -//                     The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include <cstdint> -#include <string> - -struct complex_type -{ -    int i; -    struct { long l; } inner; -    complex_type *complex_ptr; -}; - -struct pcomplex_type : complex_type -{ -    pcomplex_type(const complex_type &complx_base, const complex_type &complx_member) -        : complex_type(complx_base), complx(complx_member) { } -    complex_type complx; -    static int si; -}; - -int pcomplex_type::si; - -struct struct_with_unions -{ -    struct_with_unions(): u_i(1), u1(-1) {} -    union  -    { -        int u_i; -        int u_j;   -    }; -    union  -    { -        int  u1; -        struct -        { -            short s1; -            short s2; -        }; -    }; -}; - -void -var_update_test(void) -{ -    long l = 1; -    complex_type complx = { 3, { 3L }, &complx }; -    complex_type complx_array[2] = { { 4, { 4L }, &complx_array[1] }, { 5, { 5 }, &complx_array[0] } }; -    // BP_var_update_test_init - -    l = 0; -    // BP_var_update_test_l - -    complx.inner.l = 2; -    // BP_var_update_test_complx - -    complx_array[1].inner.l = 4; -    // BP_var_update_test_complx_array -} - -void -var_list_children_test(void) -{ -    complex_type complx = { 3, { 3L }, &complx }; -    complex_type complx_array[2] = { { 4, { 4L }, &complx_array[1] }, { 5, { 5 }, &complx_array[0] } }; -    pcomplex_type pcomplx({ 6, { 6L }, &pcomplx}, { 7, { 7L }, &pcomplx}); - -    // BP_var_list_children_test -} - -void -gdb_set_show_print_char_array_as_string_test(void) -{ -    const char *cp = "\t\"hello\"\n"; -    const char ca[] = "\t\"hello\"\n"; -    const char16_t *u16p = u"\t\"hello\"\n"; -    const char16_t u16a[] = u"\t\"hello\"\n"; -    const char32_t *u32p = U"\t\"hello\"\n"; -    const char32_t u32a[] = U"\t\"hello\"\n"; - -    const char16_t* u16p_rus = u"\\Аламо-сквер"; -    const char16_t  u16a_rus[] = u"\\Бейвью"; -    const char32_t* u32p_rus = U"\\Чайнатаун"; -    const char32_t  u32a_rus[] = U"\\Догпатч"; - -    // BP_gdb_set_show_print_char_array_as_string_test -} - -void -cpp_stl_types_test(void) -{ -    std::string std_string = "hello"; -    // BP_cpp_stl_types_test -} - -void -unnamed_objects_test(void) -{ -    struct_with_unions swu; -    // BP_unnamed_objects_test -} - -struct not_str -{ -    not_str(char _c, int _f) -        : c(_c), f(_f) { } -    char c; -    int f; -}; - -void -gdb_set_show_print_expand_aggregates(void) -{ -    complex_type complx = { 3, { 3L }, &complx }; -    complex_type complx_array[2] = { { 4, { 4L }, &complx_array[1] }, { 5, { 5 }, &complx_array[0] } }; -    not_str nstr('a', 0); - -    // BP_gdb_set_show_print_expand_aggregates -} - -void -gdb_set_show_print_aggregate_field_names(void) -{ -    complex_type complx = { 3, { 3L }, &complx }; -    complex_type complx_array[2] = { { 4, { 4L }, &complx_array[1] }, { 5, { 5 }, &complx_array[0] } }; - -    // BP_gdb_set_show_print_aggregate_field_names -} - -int g_MyVar = 3; -static int s_MyVar = 4; - -int -main(int argc, char const *argv[]) -{ -    int a = 10, b = 20; -    s_MyVar = a + b; -    var_update_test(); -    var_list_children_test(); -    gdb_set_show_print_char_array_as_string_test(); -    cpp_stl_types_test(); -    unnamed_objects_test(); -    gdb_set_show_print_expand_aggregates(); -    gdb_set_show_print_aggregate_field_names(); -    return 0; // BP_return -}  | 
