@@ -702,6 +702,8 @@ def get_test_cases_for_sections_existence(self):
702
702
"targets.moduleIdentifiers" : True ,
703
703
"targets.breakpoints" : True ,
704
704
"targets.expressionEvaluation" : True ,
705
+ "targets.frameVariable" : True ,
706
+ "targets.totalSharedLibraryEventHitCount" : True ,
705
707
"modules" : True ,
706
708
"transcript" : True ,
707
709
},
@@ -713,10 +715,12 @@ def get_test_cases_for_sections_existence(self):
713
715
},
714
716
"expect" : {
715
717
"commands" : False ,
716
- "targets" : False ,
718
+ "targets" : True ,
717
719
"targets.moduleIdentifiers" : False ,
718
720
"targets.breakpoints" : False ,
719
721
"targets.expressionEvaluation" : False ,
722
+ "targets.frameVariable" : False ,
723
+ "targets.totalSharedLibraryEventHitCount" : True ,
720
724
"modules" : False ,
721
725
"transcript" : False ,
722
726
},
@@ -733,11 +737,25 @@ def get_test_cases_for_sections_existence(self):
733
737
"targets.moduleIdentifiers" : False ,
734
738
"targets.breakpoints" : False ,
735
739
"targets.expressionEvaluation" : False ,
740
+ "targets.frameVariable" : False ,
736
741
"targets.totalSharedLibraryEventHitCount" : True ,
737
742
"modules" : False ,
738
743
"transcript" : False ,
739
744
},
740
745
},
746
+ { # Summary mode without targets
747
+ "command_options" : " --summary --targets=false" ,
748
+ "api_options" : {
749
+ "SetSummaryOnly" : True ,
750
+ "SetIncludeTargets" : False ,
751
+ },
752
+ "expect" : {
753
+ "commands" : False ,
754
+ "targets" : False ,
755
+ "modules" : False ,
756
+ "transcript" : False ,
757
+ },
758
+ },
741
759
{ # Summary mode with modules
742
760
"command_options" : " --summary --modules=true" ,
743
761
"api_options" : {
@@ -746,15 +764,17 @@ def get_test_cases_for_sections_existence(self):
746
764
},
747
765
"expect" : {
748
766
"commands" : False ,
749
- "targets" : False ,
767
+ "targets" : True ,
750
768
"targets.moduleIdentifiers" : False ,
751
769
"targets.breakpoints" : False ,
752
770
"targets.expressionEvaluation" : False ,
771
+ "targets.frameVariable" : False ,
772
+ "targets.totalSharedLibraryEventHitCount" : True ,
753
773
"modules" : True ,
754
774
"transcript" : False ,
755
775
},
756
776
},
757
- { # Everything mode but without modules and transcript
777
+ { # Default mode without modules and transcript
758
778
"command_options" : " --modules=false --transcript=false" ,
759
779
"api_options" : {
760
780
"SetIncludeModules" : False ,
@@ -766,11 +786,13 @@ def get_test_cases_for_sections_existence(self):
766
786
"targets.moduleIdentifiers" : False ,
767
787
"targets.breakpoints" : True ,
768
788
"targets.expressionEvaluation" : True ,
789
+ "targets.frameVariable" : True ,
790
+ "targets.totalSharedLibraryEventHitCount" : True ,
769
791
"modules" : False ,
770
792
"transcript" : False ,
771
793
},
772
794
},
773
- { # Everything mode but without modules
795
+ { # Default mode without modules
774
796
"command_options" : " --modules=false" ,
775
797
"api_options" : {
776
798
"SetIncludeModules" : False ,
@@ -781,6 +803,8 @@ def get_test_cases_for_sections_existence(self):
781
803
"targets.moduleIdentifiers" : False ,
782
804
"targets.breakpoints" : True ,
783
805
"targets.expressionEvaluation" : True ,
806
+ "targets.frameVariable" : True ,
807
+ "targets.totalSharedLibraryEventHitCount" : True ,
784
808
"modules" : False ,
785
809
"transcript" : True ,
786
810
},
0 commit comments