-
Notifications
You must be signed in to change notification settings - Fork 280
Constant propagate string-solver function results #5129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
JohnDumbell
merged 6 commits into
diffblue:develop
from
JohnDumbell:jd/feature/constant_string_functions
Oct 8, 2019
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
f27e28c
Add String.trim()
JohnDumbell 030d6a3
Add String.contains(...)
JohnDumbell b9b3fea
Add String.toLowerCase() / String.toUpperCase()
JohnDumbell 9e1f258
Add String.lastIndexOf(...)
JohnDumbell 79882c6
Add String.replace(...)
JohnDumbell db1f844
Add String.equalsIgnoreCase()
JohnDumbell File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
31 changes: 31 additions & 0 deletions
31
jbmc/regression/jbmc-strings/ConstantEvaluationContains/Main.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
public class Main { | ||
public void contains() { | ||
String str = "abcde"; | ||
assert str.contains("cd"); | ||
} | ||
|
||
public void doesntContain() { | ||
String str = "abcde"; | ||
assert !str.contains("cda"); | ||
} | ||
|
||
public void noprop(String str) { | ||
assert str.contains("cd"); | ||
} | ||
|
||
public void nondetArg(String str) { | ||
assert "dave".contains(str); | ||
} | ||
|
||
public void noPi() { | ||
assert !"dave".contains("π"); | ||
} | ||
|
||
public void pi() { | ||
assert "dave_loves_π".contains("π"); | ||
} | ||
|
||
public void alphanumeric() { | ||
assert "ad672naksd3".contains("72n"); | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationContains/alphanumeric.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.alphanumeric --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationContains/contains.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.contains --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationContains/doesntContain.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.doesntContain --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationContains/noPi.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.noPi --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationContains/nondetArg.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.nondetArg --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^VERIFICATION FAILED$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationContains/noprop.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.noprop --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^VERIFICATION FAILED$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationContains/pi.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.pi --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
Binary file added
BIN
+1.61 KB
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/Main.class
Binary file not shown.
49 changes: 49 additions & 0 deletions
49
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/Main.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
public class Main { | ||
public void equals() { | ||
assert "abc".equalsIgnoreCase("ABC"); | ||
} | ||
|
||
public void notEqual() { | ||
assert !"abce".equalsIgnoreCase("ABC"); | ||
} | ||
|
||
public void noprop(String val) { | ||
assert val.equalsIgnoreCase("ABC"); | ||
} | ||
|
||
public void longEquals() { | ||
assert !"abce".equalsIgnoreCase("qwertyuiops"); | ||
} | ||
|
||
public void shortEquals() { | ||
assert !"abce".equalsIgnoreCase("BF"); | ||
} | ||
|
||
public void nondetString(String str) { | ||
assert !str.equalsIgnoreCase("dave"); | ||
} | ||
|
||
public void nondetArg(String str) { | ||
assert !"dave".equalsIgnoreCase(str); | ||
} | ||
|
||
public void pi() { | ||
assert !"π".equalsIgnoreCase("dave"); | ||
} | ||
|
||
public void nonAlpha() { | ||
assert "^£&$1!".equalsIgnoreCase("^£&$1!"); | ||
} | ||
|
||
public void empty() { | ||
assert "".equalsIgnoreCase(""); | ||
} | ||
|
||
public void emptyThis() { | ||
assert !"".equalsIgnoreCase("dave"); | ||
} | ||
|
||
public void emptyArg() { | ||
assert !"dave".equalsIgnoreCase(""); | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/empty.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.empty --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/emptyArg.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.emptyArg --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/emptyThis.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.emptyThis --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/equals.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.equals --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/longEquals.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.longEquals --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/nonAlpha.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.nonAlpha --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/nondetArg.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.nondetArg --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^VERIFICATION FAILED$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/nondetString.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.nondetString --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^VERIFICATION FAILED$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/noprop.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.noprop --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^VERIFICATION FAILED$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/notEqual.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.notEqual --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/pi.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.pi --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- | ||
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationEqualsIgnoreCase/shortEquals.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.shortEquals --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
Binary file added
BIN
+1.04 KB
jbmc/regression/jbmc-strings/ConstantEvaluationLastIndexOf/Main.class
Binary file not shown.
26 changes: 26 additions & 0 deletions
26
jbmc/regression/jbmc-strings/ConstantEvaluationLastIndexOf/Main.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
public class Main { | ||
public void lastIndexOf() { | ||
String str = "abcabcabc"; | ||
assert str.lastIndexOf("b") == 7; | ||
} | ||
|
||
public void noIndex() { | ||
String str = "abcabcabc"; | ||
assert str.lastIndexOf("g") == -1; | ||
} | ||
|
||
public void noprop(String str) { | ||
assert str.lastIndexOf("b") == 7; | ||
} | ||
|
||
public void subsetIndex() { | ||
String str = "abcabcabc"; | ||
assert str.lastIndexOf("b", 5) == 4; | ||
} | ||
|
||
public void subsetNoIndex() { | ||
String str = "abcabcabc"; | ||
assert str.lastIndexOf("c", 1) == -1; | ||
} | ||
} | ||
|
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationLastIndexOf/lastIndexOf.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.lastIndexOf --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationLastIndexOf/noIndex.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.noIndex --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationLastIndexOf/noprop.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.noprop --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [1-9]\d* VCC\(s\), [1-9]\d* remaining after simplification$ | ||
^EXIT=10$ | ||
^SIGNAL=0$ | ||
^VERIFICATION FAILED$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationLastIndexOf/subsetIndex.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.subsetIndex --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
9 changes: 9 additions & 0 deletions
9
jbmc/regression/jbmc-strings/ConstantEvaluationLastIndexOf/subsetNoIndex.desc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
CORE | ||
Main.class | ||
--function Main.subsetNoIndex --cp `../../../../scripts/format_classpath.sh . ../../../lib/java-models-library/target/core-models.jar` | ||
^Generated [0-9]+ VCC\(s\), 0 remaining after simplification$ | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^VERIFICATION SUCCESSFUL$ | ||
-- | ||
-- |
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might want to note why this one doesn't work, either here or in a comment in the java file