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
ba5357de
Commit
ba5357de
authored
11 months ago
by
Thibault Martin
Browse files
Options
Downloads
Patches
Plain Diff
[test] Update oracles, cover sizeof in constFoldTerm
parent
d3f2c582
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tests/spec/const_fold_term.i
+3
-3
3 additions, 3 deletions
tests/spec/const_fold_term.i
tests/spec/const_fold_term.ml
+16
-4
16 additions, 4 deletions
tests/spec/const_fold_term.ml
tests/spec/oracle/const_fold_term.res.oracle
+10
-8
10 additions, 8 deletions
tests/spec/oracle/const_fold_term.res.oracle
with
29 additions
and
15 deletions
tests/spec/const_fold_term.i
+
3
−
3
View file @
ba5357de
...
...
@@ -14,9 +14,9 @@ void binop(int a) {
//@ assert 84 - 42 == 42;
//@ assert 6 * 7 == 42;
//@ assert 21 << 1 == 42;
//@ assert 672 >>
4
== 42;
//@ assert 672 >>
sizeof(int)
== 42;
//@ assert (58 & 47) == 42;
//@ assert (34 |
8
) == 42;
//@ assert (34 |
sizeof("frama-c")
) == 42;
//@ assert (63 ^ 21) == 42;
//@ assert 168 /
4
== 42;
//@ assert 168 /
sizeof(a)
== 42;
}
This diff is collapsed.
Click to expand it.
tests/spec/const_fold_term.ml
+
16
−
4
View file @
ba5357de
...
...
@@ -13,7 +13,7 @@ class visitTerm prj = object(_)
method
!
vterm
t
=
fold
t
;
Cil
.
DoChildren
Cil
.
JustCopy
end
...
...
@@ -22,15 +22,27 @@ let test_terms () =
let
loc
=
Cil_datatype
.
Location
.
unknown
in
let
e1
=
lognot
((
of_int
21
)
+
(
of_int
21
))
in
let
e2
=
lognot
((
of_int
21
)
-
(
of_int
21
))
in
let
e3
=
lt
zero
(
logand
(
of_int
42
)
(
of_int
21
))
in
let
e4
=
gt
one
(
logor
zero
(
of_int
21
))
in
let
e5
=
ne
zero
(
le
zero
(
logand
(
of_int
42
)
(
of_int
21
)))
in
let
e6
=
eq
one
(
ge
one
(
logor
one
zero
))
in
let
t1
=
cil_term
~
loc
e1
in
let
t2
=
cil_term
~
loc
e2
in
Format
.
printf
"Custom terms : @."
;
let
t3
=
cil_term
~
loc
e3
in
let
t4
=
cil_term
~
loc
e4
in
let
t5
=
cil_term
~
loc
e5
in
let
t6
=
cil_term
~
loc
e6
in
Format
.
printf
"Custom terms :@."
;
fold
t1
;
fold
t2
fold
t2
;
fold
t3
;
fold
t4
;
fold
t5
;
fold
t6
let
startup
()
=
test_terms
()
;
Format
.
printf
"File terms :
@."
;
Format
.
printf
"File terms :@."
;
let
prj
=
File
.
create_project_from_visitor
"test_const_fold"
(
fun
prj
->
new
visitTerm
prj
)
in
...
...
This diff is collapsed.
Click to expand it.
tests/spec/oracle/const_fold_term.res.oracle
+
10
−
8
View file @
ba5357de
[kernel] Parsing const_fold_term.i (no preprocessing)
Custom terms :
Custom terms :
!(21 + 21) folds to 0
!(21 - 21) folds to 1
File terms :
0 < (42 ∧ 21) folds to 1
1 > (0 ∨ 21) folds to 0
0 ≢ (0 ≤ (42 ∧ 21)) folds to 1
1 ≡ (1 ≥ (1 ∨ 0)) folds to 1
File terms :
-(21 + 21) folds to -42
21 + 21 folds to 42
~21 folds to -22
-a folds to -a
(21 + 21) + a folds to (21 + 21) + a
21 + 21 folds to 42
(21 + 21) + a folds to 42 + a
84 - 42 folds to 42
6 * 7 folds to 42
21 << 1 folds to 42
672 >>
4
folds to 42
672 >>
sizeof(int)
folds to 42
58 & 47 folds to 42
34 |
8
folds to 42
34 |
sizeof("frama-c")
folds to 42
63 ^ 21 folds to 42
168 /
4
folds to 168 / 4
168 /
sizeof(a)
folds to 168 / 4
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