Added TODO comments for disabled tests
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@3429 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
28a0c0ff75
commit
b290f203da
|
@ -94,6 +94,7 @@ public class SslHttpExchangeTest extends HttpExchangeTest
|
|||
@Override
|
||||
public void testPerf() throws Exception
|
||||
{
|
||||
// TODO needs to be further investigated
|
||||
Assume.assumeTrue(!OS.IS_OSX || Stress.isEnabled());
|
||||
|
||||
// TODO Resolve problems on IBM JVM https://bugs.eclipse.org/bugs/show_bug.cgi?id=304532
|
||||
|
|
|
@ -117,7 +117,8 @@ public class StressTest
|
|||
@Test
|
||||
public void testNonPersistent() throws Throwable
|
||||
{
|
||||
assumeTrue(!OS.IS_OSX || Stress.isEnabled());
|
||||
// TODO needs to be further investigated
|
||||
assumeTrue(!OS.IS_OSX || Stress.isEnabled());
|
||||
|
||||
doThreads(10,100,false);
|
||||
if (Stress.isEnabled())
|
||||
|
@ -132,7 +133,8 @@ public class StressTest
|
|||
@Test
|
||||
public void testPersistent() throws Throwable
|
||||
{
|
||||
assumeTrue(!OS.IS_OSX || Stress.isEnabled());
|
||||
// TODO needs to be further investigated
|
||||
assumeTrue(!OS.IS_OSX || Stress.isEnabled());
|
||||
|
||||
doThreads(20,100,true);
|
||||
if (Stress.isEnabled())
|
||||
|
|
|
@ -87,6 +87,7 @@ public class ScannerTest
|
|||
@Test
|
||||
public void testAddedChangeRemove() throws Exception
|
||||
{
|
||||
// TODO needs to be further investigated
|
||||
Assume.assumeTrue(!OS.IS_WINDOWS && !OS.IS_OSX);
|
||||
|
||||
touch("a0");
|
||||
|
@ -195,6 +196,7 @@ public class ScannerTest
|
|||
@Test
|
||||
public void testSizeChange() throws Exception
|
||||
{
|
||||
// TODO needs to be further investigated
|
||||
Assume.assumeTrue(!OS.IS_WINDOWS && !OS.IS_OSX);
|
||||
|
||||
touch("tsc0");
|
||||
|
|
|
@ -461,6 +461,7 @@ public class ResourceTest
|
|||
@Test
|
||||
public void testUncPathResourceFile() throws Exception
|
||||
{
|
||||
// This test is intended to run only on Windows platform
|
||||
assumeTrue(OS.IS_WINDOWS);
|
||||
|
||||
String uncPath = "\\\\127.0.0.1"+__userURL.toURI().getPath().replace('/','\\').replace(':','$')+"ResourceTest.java";
|
||||
|
|
Loading…
Reference in New Issue