Ability to skip extra long test

This commit is contained in:
Roman Shevchenko
2013-01-17 21:57:21 +01:00
parent 06941be250
commit 03c8b696df
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2012 JetBrains s.r.o.
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -41,6 +41,14 @@ import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
public class PsiConcurrencyStressTest extends PsiTestCase {
private static final boolean SKIP = "true".equalsIgnoreCase(System.getProperty("skip.psi.concurrency.test"));
@Override
public void runBare() throws Throwable {
if (!SKIP) {
super.runBare();
}
}
@Override
protected void setUp() throws Exception {