forked from infinispan/infinispan
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move more random failing tests to the unstable group
* ISPN-3631 - o.i.persistence.support.AsyncStoreEvictionTest * ISPN-3994 - o.i.rest.IntegrationTest * ISPN-4023 - o.i.server.test.rest.RESTCertSecurityTest * ISPN-4026 - o.i.server.test.configs.ExampleConfigsTest * ISPN-4017 - o.i.client.hotrod.BaseBulkGetKeysTest * ISPN-4057 - o.i.server.test.clusteredcache.ClusteredCacheConfigurationTest * ISPN-4058 - o.i.test.integration.as.cdi.GreetingServiceIT * ISPN-4029 - o.i.commons.util.concurrent.NotifyingFutureTest
- Loading branch information
1 parent
c33abc4
commit fca8dc0
Showing
8 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
package org.infinispan.test.integration.as.cdi; | ||
|
||
import org.infinispan.test.integration.as.category.UnstableTest; | ||
import org.jboss.arquillian.container.test.api.Deployment; | ||
import org.jboss.arquillian.junit.Arquillian; | ||
import org.jboss.shrinkwrap.api.spec.WebArchive; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.junit.experimental.categories.Category; | ||
|
||
import javax.cache.annotation.CacheKey; | ||
import javax.inject.Inject; | ||
|
@@ -17,6 +19,7 @@ | |
* @author Kevin Pollet <[email protected]> (C) 2011 | ||
*/ | ||
@RunWith(Arquillian.class) | ||
@Category(UnstableTest.class) // See ISPN-4058 | ||
public class GreetingServiceIT { | ||
|
||
@Deployment | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,6 +48,7 @@ | |
import org.infinispan.client.hotrod.RemoteCacheManager; | ||
import org.infinispan.client.hotrod.configuration.ConfigurationBuilder; | ||
import org.infinispan.client.hotrod.exceptions.TransportException; | ||
import org.infinispan.server.test.category.UnstableTest; | ||
import org.infinispan.server.test.client.memcached.MemcachedClient; | ||
import org.infinispan.server.test.client.rest.RESTHelper; | ||
import org.infinispan.server.test.util.RemoteCacheManagerFactory; | ||
|
@@ -63,6 +64,7 @@ | |
import org.junit.Before; | ||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
import org.junit.experimental.categories.Category; | ||
|
||
import static org.infinispan.server.test.client.rest.RESTHelper.*; | ||
import static org.infinispan.server.test.util.TestUtil.eventually; | ||
|
@@ -76,6 +78,7 @@ | |
* @author Galder Zamarreño ([email protected]) | ||
* @author Michal Linhard ([email protected]) | ||
*/ | ||
@Category(UnstableTest.class) // See ISPN-4026 | ||
@RunWith(Arquillian.class) | ||
public class ExampleConfigsTest { | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters