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
e1e2fb0d
Commit
e1e2fb0d
authored
3 years ago
by
Andre Maroneze
Committed by
David Bühler
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[tests] add test case for very large integers
parent
b715927e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/syntax/very_large_integers.c
+73
-0
73 additions, 0 deletions
tests/syntax/very_large_integers.c
with
73 additions
and
0 deletions
tests/syntax/very_large_integers.c
0 → 100644
+
73
−
0
View file @
e1e2fb0d
/* run.config
EXIT: 1
STDOPT: #"-cpp-extra-args=-DBITFIELD"
STDOPT: #"-cpp-extra-args=-DARRAY_DECL"
STDOPT: #"-cpp-extra-args=-DCASE_RANGE"
STDOPT: #"-cpp-extra-args=-DINIT_DESIGNATOR"
STDOPT: #"-cpp-extra-args=-DINIT_DESIGNATOR2"
STDOPT: #"-cpp-extra-args=-DRANGE_DESIGNATOR"
STDOPT: #"-cpp-extra-args=-DATTRIBUTE_CONSTANT"
STDOPT: #"-cpp-extra-args=-DEVA_UNROLL -eva"
STDOPT: #"-cpp-extra-args=-DUNROLL_PRAGMA"
*/
volatile
int
nondet
;
#ifdef BITFIELD
struct
st
{
int
bf
:
(
999999999999999999
+
9999999999999999999
);
};
#endif
#ifdef ARRAY_DECL
int
arr
[
9999999999999999999U
+
18000000000000000000U
];
char
arr1
[
99999999999999999999U
];
#endif
#ifdef CASE_RANGE
unsigned
long
nondetul
;
void
case_range
()
{
switch
(
nondetul
)
case
0
...
9999999999999999999U
:;
}
#endif
#ifdef INIT_DESIGNATOR
int
arr2
[
9999999999999999999U
]
=
{
[
9999999999999999999U
]
=
42
};
#endif
#ifdef INIT_DESIGNATOR2
int
arr3
[
1
]
=
{
[
9999999999999999999U
]
=
42
};
#endif
#ifdef RANGE_DESIGNATOR
int
arr4
[
1
]
=
{
[
-
9999999999999999999U
...
9999999999999999999U
]
=
42
};
#endif
#ifdef ATTRIBUTE_CONSTANT
struct
acst
{
int
a
__attribute__
((
aligned
(
0x80000000000000000
)));
};
#endif
typedef
struct
{
char
a
;
int
b
__attribute__
((
aligned
(
0x8000000000000000
)));
double
c
__attribute__
((
aligned
(
0x8000000000000000
+
0x8000000000000000
)));
}
stt
;
//@ logic integer too_large_integer = 9999999999999999999;
int
main
()
{
#ifdef EVA_UNROLL
//@ loop unroll (-9999999999999999999); // IntLimit
while
(
nondet
);
//@ loop unroll too_large_integer; // ExpLimit
while
(
nondet
);
//@ slevel 9999999999999999999;
while
(
nondet
);
#endif
#ifdef UNROLL_PRAGMA
//@ loop pragma UNROLL 99999999999999999999;
#endif
while
(
nondet
);
return
0
;
}
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