Skip to content

Commit df16159

Browse files
author
Daniel Kroening
authored
Merge pull request diffblue#1241 from romainbrenguier/bugfix/check-axioms#874
Improvement in check_axioms method of the string solver
2 parents 90b1ed6 + 8f51b01 commit df16159

File tree

38 files changed

+310
-188
lines changed

38 files changed

+310
-188
lines changed

regression/strings-smoke-tests/java_append_char/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_append_char.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

regression/strings-smoke-tests/java_case/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_case.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* file test_case.java line 10 .* SUCCESS$

regression/strings-smoke-tests/java_insert_char/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_char.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

regression/strings-smoke-tests/java_insert_char_array/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_char_array.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

regression/strings-smoke-tests/java_insert_int/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FUTURE
22
test_insert_int.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

regression/strings-smoke-tests/java_insert_multiple/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_multiple.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

regression/strings-smoke-tests/java_insert_string/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_string.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=0$
55
^SIGNAL=0$
66
^VERIFICATION SUCCESSFUL$

regression/strings-smoke-tests/java_int_to_string/test3.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test3.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string/test5.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test5.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string_with_radix/test_binary1.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_binary1.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string_with_radix/test_binary2.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_binary2.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string_with_radix/test_hex1.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_hex1.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string_with_radix/test_hex2.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_hex2.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string_with_radix/test_hex3.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_hex3.class
3-
--refine-strings
3+
--refine-strings --string-max-length 100
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string_with_radix/test_octal2.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_octal2.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_int_to_string_with_radix/test_octal3.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_octal3.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_long_to_string_with_radix/test_hex1.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_hex1.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_long_to_string_with_radix/test_hex3.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_hex3.class
3-
--refine-strings
3+
--refine-strings --string-max-length 100
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_long_to_string_with_radix/test_octal1.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_octal1.class
3-
--refine-strings
3+
--refine-strings --string-max-length 100
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_long_to_string_with_radix/test_octal2.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_octal2.class
3-
--refine-strings
3+
--refine-strings --string-max-length 100
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_long_to_string_with_radix/test_octal3.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
Test_octal3.class
3-
--refine-strings
3+
--refine-strings --string-max-length 100
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* line 7 .* SUCCESS$

regression/strings-smoke-tests/java_value_of_float/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test.class
3-
--refine-strings --function test.check
3+
--refine-strings --function test.check --string-max-length 100
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* file test.java line 7 .* SUCCESS$

regression/strings-smoke-tests/java_value_of_float_2/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
KNOWNBUG
22
test.class
3-
--refine-strings --function test.check
3+
--refine-strings --function test.check --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* file test.java line 6 .* SUCCESS$

regression/strings-smoke-tests/java_value_of_long/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
assertion.* file test.java line 9 .* SUCCESS$

regression/strings/StringStartEnd02/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
StringStartEnd02.class
3-
--refine-strings --unwind 30
3+
--refine-strings --unwind 30 --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^\[.*assertion\.1\] .* line 13 .* FAILURE$

regression/strings/java_append_char/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_append_char.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^VERIFICATION FAILED$

regression/strings/java_case/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_case.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^\[.*assertion\.1\].* line 8.* FAILURE$

regression/strings/java_char_array_init/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_init.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^\[.*assertion.1\].* line 14.* FAILURE$

regression/strings/java_insert_char/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_char.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^\[.*assertion\.1\].* line 8.* FAILURE$

regression/strings/java_insert_char_array/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_char_array.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^\[.*assertion\.1\].* line 12.* FAILURE$

regression/strings/java_insert_int/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_int.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^\[.*assertion\.1\].* line 8.* FAILURE$

regression/strings/java_insert_string/test.desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
CORE
22
test_insert_string.class
3-
--refine-strings
3+
--refine-strings --string-max-length 1000
44
^EXIT=10$
55
^SIGNAL=0$
66
^\[.*assertion\.1\].* line 8.* FAILURE$

0 commit comments

Comments
 (0)