changes
[model-checker-benchmarks.git] / chase-lev-deque-bugfix / testcase5.c
index f171a394fca62ea310a1e4114d5299af0e7135a3..7baee41206798ccb8c7aa17e2a557c775ef95960 100644 (file)
@@ -13,6 +13,11 @@ int a;
 int b;
 int c;
 
+/** Make w14 release, try to run with the following:
+       time ./run.sh chase-lev-deque-bugfix/testcase5_wildcard -m2 -y -u3 -tSCFENCE
+               -o fchase-lev-deque-bugfix/result4.txt -o weaken -x5000
+*/
+
 static void task(void * param) {
        b=steal(q);
        //c=steal(q);
@@ -24,11 +29,11 @@ int user_main(int argc, char **argv)
        q=create();
 
        push(q, 1);
+       //push(q, 2);
+       //push(q, 3);
        thrd_create(&t1, task, 0);
        //thrd_create(&t2, task, 0);
-       push(q, 2);
-       //push(q, 3);
-       //a=take(q);
+       a=take(q);
        //c=take(q);
        thrd_join(t1);
        //thrd_join(t2);