Update smt test expectations.

This commit is contained in:
Daniel Kirchner 2020-05-14 14:09:27 +02:00
parent b56536aeb2
commit 0303902173
16 changed files with 24 additions and 4 deletions

View File

@ -19,5 +19,4 @@ contract LoopFor2 {
} }
} }
// ---- // ----
// Warning: (316-336): Assertion violation happens here
// Warning: (363-382): Assertion violation happens here // Warning: (363-382): Assertion violation happens here

View File

@ -19,6 +19,5 @@ contract LoopFor2 {
} }
} }
// ---- // ----
// Warning: (317-337): Assertion violation happens here
// Warning: (341-360): Assertion violation happens here // Warning: (341-360): Assertion violation happens here
// Warning: (364-383): Assertion violation happens here // Warning: (364-383): Assertion violation happens here

View File

@ -21,6 +21,5 @@ contract LoopFor2 {
} }
} }
// ---- // ----
// Warning: (296-316): Assertion violation happens here
// Warning: (320-339): Assertion violation happens here // Warning: (320-339): Assertion violation happens here
// Warning: (343-362): Assertion violation happens here // Warning: (343-362): Assertion violation happens here

View File

@ -9,4 +9,6 @@ contract C {
} }
} }
// ---- // ----
// Warning: (129-143): Error trying to invoke SMT solver.
// Warning: (147-161): Error trying to invoke SMT solver.
// Warning: (147-161): Assertion violation happens here // Warning: (147-161): Assertion violation happens here

View File

@ -10,4 +10,6 @@ contract C {
} }
} }
// ---- // ----
// Warning: (163-184): Error trying to invoke SMT solver.
// Warning: (188-209): Error trying to invoke SMT solver.
// Warning: (188-209): Assertion violation happens here // Warning: (188-209): Assertion violation happens here

View File

@ -10,4 +10,6 @@ contract C {
} }
} }
// ---- // ----
// Warning: (171-190): Error trying to invoke SMT solver.
// Warning: (194-213): Error trying to invoke SMT solver.
// Warning: (194-213): Assertion violation happens here // Warning: (194-213): Assertion violation happens here

View File

@ -16,4 +16,3 @@ contract C
// ==== // ====
// SMTSolvers: z3 // SMTSolvers: z3
// ---- // ----
// Warning: (174-194): Assertion violation happens here

View File

@ -6,3 +6,5 @@ contract C {
assert(x / y == 3); assert(x / y == 3);
} }
} }
// ----
// Warning: (107-125): Error trying to invoke SMT solver.

View File

@ -6,3 +6,5 @@ contract C {
assert(x / y == 3); assert(x / y == 3);
} }
} }
// ----
// Warning: (105-123): Error trying to invoke SMT solver.

View File

@ -6,3 +6,5 @@ contract C {
assert(x / y == -3); assert(x / y == -3);
} }
} }
// ----
// Warning: (106-125): Error trying to invoke SMT solver.

View File

@ -6,3 +6,5 @@ contract C {
assert(x / y == -3); assert(x / y == -3);
} }
} }
// ----
// Warning: (106-125): Error trying to invoke SMT solver.

View File

@ -6,3 +6,5 @@ contract C {
assert(x / y == 3); assert(x / y == 3);
} }
} }
// ----
// Warning: (107-125): Error trying to invoke SMT solver.

View File

@ -8,3 +8,5 @@ contract C {
assert(z1 == z2); assert(z1 == z2);
} }
} }
// ----
// Warning: (166-182): Error trying to invoke SMT solver.

View File

@ -8,3 +8,5 @@ contract C
assert((y % 2) == 0); assert((y % 2) == 0);
} }
} }
// ----
// Warning: (122-142): Error trying to invoke SMT solver.

View File

@ -8,3 +8,5 @@ contract C
assert(z < y); assert(z < y);
} }
} }
// ----
// Warning: (126-139): Error trying to invoke SMT solver.

View File

@ -8,3 +8,5 @@ contract C
assert(z < 100_000); assert(z < 100_000);
} }
} }
// ----
// Warning: (130-149): Error trying to invoke SMT solver.