Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public class ForgottenSynchronizationTest {
/**
* Demonstrates that CounterExample has race conditions due to forgotten synchronization
*/
@RepeatedTest(10)
@Timeout(value = 5, unit = TimeUnit.SECONDS)
// @RepeatedTest(10)
// @Timeout(value = 5, unit = TimeUnit.SECONDS)
public void testForgottenSynchronizationCausesRaceCondition() throws InterruptedException {
CounterExample counter = new CounterExample();
final int THREADS = 10;
Expand Down
Loading