Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-schwarz committed Nov 8, 2021
1 parent d63c729 commit 9efcd90
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/regression/13-privatized/67-pthread_cond_wait.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ void* f1(void* ptr) {
pthread_mutex_lock(&mut);
g = 1;
pthread_cond_wait(&cond,&mut);
assert(g == 0); // TODO (no cond-flow support)
assert(g == 0); //UNKNOWN!
assert(g != 1); //UNKNOWN!
printf("g is %i", g);
g = 0;
pthread_mutex_unlock(&mut);
Expand Down

0 comments on commit 9efcd90

Please sign in to comment.