Skip to content

Commit e2c3c29

Browse files
committed
Add verdict, move to regression folder
1 parent 9354a95 commit e2c3c29

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

trunk/examples/concurrent/bpl/NonAtomicIncrement_2Threads_Loop.bpl renamed to trunk/examples/concurrent/bpl/regression/NonAtomicIncrement_2Threads_Loop.bpl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//#Safe
12
/*
23
*
34
*
@@ -13,11 +14,11 @@ modifies x;
1314

1415
implementation ULTIMATE.start()
1516
{
16-
x := 0;
17+
x := 0;
1718

18-
fork 1 fistIncrementProcess();
19+
fork 1 fistIncrementProcess();
1920
fork 2 secondIncrementProcess();
20-
join 1;
21+
join 1;
2122
join 2;
2223
assert x >= 2;
2324
}

0 commit comments

Comments
 (0)