Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
8204f38e
Commit
8204f38e
authored
4 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Eva] Adds test cases of _Bool increments/decrements.
parent
0d1200fd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/value/bool.i
+11
-1
11 additions, 1 deletion
tests/value/bool.i
tests/value/oracle/bool.res.oracle
+20
-15
20 additions, 15 deletions
tests/value/oracle/bool.res.oracle
with
31 additions
and
16 deletions
tests/value/bool.i
+
11
−
1
View file @
8204f38e
...
...
@@ -16,7 +16,17 @@ int valid_bool () {
Frama_C_show_each(x, y);
x=x+1;
Frama_C_show_each(x);
x=x+1;
++x;
Frama_C_show_each(x);
x++;
Frama_C_show_each(x);
x--;
Frama_C_show_each(x);
x--;
Frama_C_show_each(x);
--x;
Frama_C_show_each(x);
--x;
Frama_C_show_each(x);
return y;
}
...
...
This diff is collapsed.
Click to expand it.
tests/value/oracle/bool.res.oracle
+
20
−
15
View file @
8204f38e
...
...
@@ -5,41 +5,46 @@
[eva:initial-state] Values of globals at initialization
rand ∈ [--..--]
[eva] computing for function valid_bool <- main.
Called from tests/value/bool.i:
6
1.
Called from tests/value/bool.i:
7
1.
[eva] tests/value/bool.i:12: Frama_C_show_each: {0}
[eva] tests/value/bool.i:14: Frama_C_show_each: {1}
[eva] tests/value/bool.i:16: Frama_C_show_each: {1}, {2}
[eva] tests/value/bool.i:18: Frama_C_show_each: {1}
[eva] tests/value/bool.i:20: Frama_C_show_each: {1}
[eva] tests/value/bool.i:22: Frama_C_show_each: {1}
[eva] tests/value/bool.i:24: Frama_C_show_each: {0}
[eva] tests/value/bool.i:26: Frama_C_show_each: {1}
[eva] tests/value/bool.i:28: Frama_C_show_each: {0}
[eva] tests/value/bool.i:30: Frama_C_show_each: {1}
[eva] Recording results for valid_bool
[eva] Done for function valid_bool
[eva] computing for function invalid_bool <- main.
Called from tests/value/bool.i:
6
2.
[eva:alarm] tests/value/bool.i:
3
3: Warning:
Called from tests/value/bool.i:
7
2.
[eva:alarm] tests/value/bool.i:
4
3: Warning:
trap representation of a _Bool lvalue. assert ub.b ≡ 0 ∨ ub.b ≡ 1;
[eva] tests/value/bool.i:36: Frama_C_show_each_zero: {0}
[eva] tests/value/bool.i:39: Frama_C_show_each_one: {1}
[eva:alarm] tests/value/bool.i:42: Warning:
trap representation of a _Bool lvalue. assert ub.b ≡ 0 ∨ ub.b ≡ 1;
[eva:alarm] tests/value/bool.i:45: Warning:
trap representation of a _Bool lvalue. assert ub.b ≡ 0 ∨ ub.b ≡ 1;
[eva] tests/value/bool.i:46: Frama_C_show_each_zero_or_one: {0; 1}
[eva] tests/value/bool.i:46: Frama_C_show_each_zero: {0}
[eva] tests/value/bool.i:49: Frama_C_show_each_one: {1}
[eva:alarm] tests/value/bool.i:52: Warning:
trap representation of a _Bool lvalue. assert ub.b ≡ 0 ∨ ub.b ≡ 1;
[eva:alarm] tests/value/bool.i:55: Warning:
trap representation of a _Bool lvalue. assert ub.b ≡ 0 ∨ ub.b ≡ 1;
[eva] tests/value/bool.i:56: Frama_C_show_each_zero_or_one: {0; 1}
[eva] tests/value/bool.i:59: Frama_C_show_each_one: {1}
[eva:alarm] tests/value/bool.i:62: Warning:
trap representation of a _Bool lvalue. assert b ≡ 0 ∨ b ≡ 1;
[eva:alarm] tests/value/bool.i:
5
6: Warning:
[eva:alarm] tests/value/bool.i:
6
6: Warning:
trap representation of a _Bool lvalue. assert *p ≡ 0 ∨ *p ≡ 1;
[eva] tests/value/bool.i:
5
7: Frama_C_show_each_zero_or_one: {0; 1}
[eva] tests/value/bool.i:
6
7: Frama_C_show_each_zero_or_one: {0; 1}
[eva] Recording results for invalid_bool
[eva] Done for function invalid_bool
[eva] Recording results for main
[eva] done for function main
[eva] tests/value/bool.i:33:
assertion 'Eva,bool_value' got final status invalid.
[eva] tests/value/bool.i:42:
[eva] tests/value/bool.i:43:
assertion 'Eva,bool_value' got final status invalid.
[eva] tests/value/bool.i:52:
assertion 'Eva,bool_value' got final status invalid.
[eva] tests/value/bool.i:62:
assertion 'Eva,bool_value' got final status invalid.
[eva] ====== VALUES COMPUTED ======
[eva:final-states] Values at end of function invalid_bool:
ub{.b; .c; .s[bits 0 to 7]} ∈ {0; 1}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment