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
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Charles Southerland
frama-c
Commits
17172acc
Commit
17172acc
authored
4 years ago
by
Patrick Baudin
Committed by
Virgile Prevosto
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[tests] adds some traceability into the new test
parent
051da72d
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/spec/loop_assigns_generated.ml
+5
-3
5 additions, 3 deletions
tests/spec/loop_assigns_generated.ml
tests/spec/oracle/loop_assigns_generated.res.oracle
+1
-1
1 addition, 1 deletion
tests/spec/oracle/loop_assigns_generated.res.oracle
with
6 additions
and
4 deletions
tests/spec/loop_assigns_generated.ml
+
5
−
3
View file @
17172acc
open
Cil_types
open
Cil_types
let
e1
=
Emitter
.(
create
"
test
1"
[
Code_annot
]
[]
[]
)
let
e1
=
Emitter
.(
create
"
emitter
1"
[
Code_annot
]
[]
[]
)
let
e2
=
Emitter
.(
create
"
test
2"
[
Code_annot
]
[]
[]
)
let
e2
=
Emitter
.(
create
"
emitter
2"
[
Code_annot
]
[]
[]
)
let
add_assigns
e
kf
stmt
v
=
let
add_assigns
e
kf
stmt
v
=
let
lv
=
Cil
.
cvar_to_lvar
v
in
let
lv
=
Cil
.
cvar_to_lvar
v
in
let
id_v
=
Logic_const
.
new_identified_term
(
Logic_const
.
tvar
lv
)
in
let
term_v
=
Logic_const
.
tvar
lv
in
let
named_term_v
=
{
term_v
with
term_name
=
(
"added_by_"
^
(
Emitter
.
get_name
e
))
::
term_v
.
term_name
}
in
let
id_v
=
Logic_const
.
new_identified_term
named_term_v
in
Annotations
.
add_code_annot
e
~
kf
stmt
Annotations
.
add_code_annot
e
~
kf
stmt
(
Logic_const
.
new_code_annotation
(
Logic_const
.
new_code_annotation
(
AAssigns
([]
,
Writes
[
id_v
,
FromAny
])));
(
AAssigns
([]
,
Writes
[
id_v
,
FromAny
])));
...
...
This diff is collapsed.
Click to expand it.
tests/spec/oracle/loop_assigns_generated.res.oracle
+
1
−
1
View file @
17172acc
...
@@ -5,7 +5,7 @@ void f(void)
...
@@ -5,7 +5,7 @@ void f(void)
int k;
int k;
int j;
int j;
int i = 0;
int i = 0;
/*@ loop assigns
k, j
, i; */
/*@ loop assigns
(added_by_emitter2: k), (added_by_emitter1: j)
, i; */
while (i < 10) i ++;
while (i < 10) i ++;
return;
return;
}
}
...
...
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