-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
tests/regression/46-apron2/65-case_distinction_with_ghosts-2.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// PARAM: --enable ana.sv-comp.functions --set ana.activated[+] apron --set ana.relation.privatization mutex-meet --set sem.int.signed_overflow assume_none | ||
#include <pthread.h> | ||
#include <assert.h> | ||
|
||
extern int __VERIFIER_nondet_int(); | ||
extern void __VERIFIER_atomic_begin(); | ||
extern void __VERIFIER_atomic_end(); | ||
|
||
int x = 0; | ||
int g = 0; | ||
|
||
void* inc() | ||
{ | ||
__VERIFIER_atomic_begin(); | ||
assert(g != 1 || x >= 42); // TODO | ||
__VERIFIER_atomic_end(); | ||
return 0; | ||
} | ||
|
||
int main() | ||
{ | ||
pthread_t tid; | ||
pthread_create(&tid, 0, inc, 0); | ||
__VERIFIER_atomic_begin(); | ||
g = 1; x = 42; | ||
__VERIFIER_atomic_end(); | ||
|
||
assert(x >= 42); // TODO | ||
return 0; | ||
} |
30 changes: 30 additions & 0 deletions
30
tests/regression/46-apron2/66-case_distinction_with_ghosts-3.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// PARAM: --enable ana.sv-comp.functions --set ana.activated[+] apron --set ana.relation.privatization mutex-meet --set sem.int.signed_overflow assume_none | ||
#include <pthread.h> | ||
#include <assert.h> | ||
|
||
extern int __VERIFIER_nondet_int(); | ||
extern void __VERIFIER_atomic_begin(); | ||
extern void __VERIFIER_atomic_end(); | ||
|
||
int x = 0; | ||
int g = 0; | ||
|
||
void* inc() | ||
{ | ||
// x = 10; // TODO: what is this? | ||
|
||
__VERIFIER_atomic_begin(); | ||
assert(g != 1 || x >= 42); // TODO | ||
__VERIFIER_atomic_end(); | ||
return 0; | ||
} | ||
|
||
int main() | ||
{ | ||
pthread_t tid; | ||
pthread_create(&tid, 0, inc, 0); | ||
__VERIFIER_atomic_begin(); | ||
g = 1; x = 42; | ||
__VERIFIER_atomic_end(); | ||
return 0; | ||
} |