Skip to content
Snippets Groups Projects
Commit e1e2fb0d authored by Andre Maroneze's avatar Andre Maroneze Committed by David Bühler
Browse files

[tests] add test case for very large integers

parent b715927e
No related branches found
No related tags found
No related merge requests found
/* 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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment