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
bcd94bee
Commit
bcd94bee
authored
1 year ago
by
Pierre Nigron
Browse files
Options
Downloads
Patches
Plain Diff
Comment test + Oracle
parent
6c71eee1
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/syntax/init_call_ko.c
+6
-6
6 additions, 6 deletions
tests/syntax/init_call_ko.c
tests/syntax/oracle/init_call_ko.res.oracle
+1
-1
1 addition, 1 deletion
tests/syntax/oracle/init_call_ko.res.oracle
with
7 additions
and
7 deletions
tests/syntax/init_call_ko.c
+
6
−
6
View file @
bcd94bee
...
@@ -5,11 +5,11 @@
...
@@ -5,11 +5,11 @@
char
*
b
(
char
*
c
){
return
c
;
}
char
*
b
(
char
*
c
){
return
c
;
}
int
main
(
void
)
{
int
main
(
void
)
{
char
a
[]
=
b
(
""
);
char
a
[]
=
b
(
""
);
// cannot be initialized with a function call
char
m
[]
=
1
;
char
m
[]
=
1
;
// cannot be initialized with a constant
char
p
[
1
]
=
0
;
char
p
[
1
]
=
0
;
// even if sized
extern
char
j
[]
=
{
0
,
1
};
extern
char
j
[]
=
{
0
,
1
};
// extern local variable cannot be initialized
char
f
[];
char
f
[];
// unsized array must be initialized
static
char
n
[];
static
char
n
[];
// even if static
return
0
;
return
0
;
}
}
This diff is collapsed.
Click to expand it.
tests/syntax/oracle/init_call_ko.res.oracle
+
1
−
1
View file @
bcd94bee
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
[kernel] init_call_ko.c:10: User Error:
[kernel] init_call_ko.c:10: User Error:
Array initializer must be an initializer list or string literal
Array initializer must be an initializer list or string literal
[kernel] init_call_ko.c:11: User Error:
[kernel] init_call_ko.c:11: User Error:
'extern' variable cannot have an initializer
'extern'
local
variable cannot have an initializer
[kernel] init_call_ko.c:12: User Error:
[kernel] init_call_ko.c:12: User Error:
variable f with array type needs an explicit size or an initializer
variable f with array type needs an explicit size or an initializer
[kernel] init_call_ko.c:13: User Error:
[kernel] init_call_ko.c:13: User Error:
...
...
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