File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
boomerangPDS/src/test/java/test/options
testCore/src/main/java/test Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,10 @@ public void analyze(
8787 actualAllocSiteStrings .add (allocVal .getStringValue ());
8888 } else if (allocVal .isIntConstant ()) {
8989 actualAllocSiteStrings .add (String .valueOf (allocVal .getIntValue ()));
90+ } else if (allocVal .isConstant ()) {
91+ actualAllocSiteStrings .add (allocVal .toString ());
92+ } else if (allocVal .isNull ()) {
93+ actualAllocSiteStrings .add (allocVal .toString ());
9094 }
9195 }
9296
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public class TestingFramework {
3636 private static final String OPAL = "opal" ;
3737
3838 /** This variable may be changed to run the tests locally */
39- private static final String DEFAULT_FRAMEWORK = SOOT ;
39+ private static final String DEFAULT_FRAMEWORK = OPAL ;
4040
4141 private final TestSetup testSetup ;
4242 private final Collection <String > includedClasses ;
You can’t perform that action at this time.
0 commit comments