Skip to content

Commit

Permalink
re-enable clustring tests
Browse files Browse the repository at this point in the history
re-enable more tests

Fix configurations to use undertow
  • Loading branch information
ctomc authored and kabir committed Apr 4, 2013
1 parent 57d6ce0 commit 45a268b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
Expand Up @@ -24,7 +24,7 @@
<subsystem supplement="standalone">configuration/subsystems/security.xml</subsystem>
<subsystem>configuration/subsystems/threads.xml</subsystem>
<subsystem>configuration/subsystems/transactions.xml</subsystem>
<subsystem>configuration/subsystems/web.xml</subsystem>
<subsystem>configuration/subsystems/undertow.xml</subsystem>
<subsystem>configuration/subsystems/webservices.xml</subsystem>
<subsystem>configuration/subsystems/weld.xml</subsystem>
</subsystems>
Expand Down
Expand Up @@ -26,7 +26,7 @@
<subsystem supplement="standalone">configuration/subsystems/security.xml</subsystem>
<subsystem>configuration/subsystems/threads.xml</subsystem>
<subsystem supplement="jts-example">configuration/subsystems/transactions.xml</subsystem>
<subsystem>configuration/subsystems/web.xml</subsystem>
<subsystem>configuration/subsystems/undertow.xml</subsystem>
<subsystem>configuration/subsystems/webservices.xml</subsystem>
<subsystem>configuration/subsystems/weld.xml</subsystem>
</subsystems>
Expand Down
Expand Up @@ -28,7 +28,7 @@
<subsystem supplement="standalone">configuration/subsystems/security.xml</subsystem>
<subsystem>configuration/subsystems/threads.xml</subsystem>
<subsystem>configuration/subsystems/transactions.xml</subsystem>
<subsystem>configuration/subsystems/web.xml</subsystem>
<subsystem>configuration/subsystems/undertow.xml</subsystem>
<subsystem>configuration/subsystems/webservices.xml</subsystem>
<subsystem>configuration/subsystems/weld.xml</subsystem>
<subsystem>configuration/examples/subsystems/xts.xml</subsystem>
Expand Down
1 change: 1 addition & 0 deletions osgi/integration/http/pom.xml
Expand Up @@ -93,6 +93,7 @@
!org.jboss.as.osgi*,
!org.jboss.as.server*,
!org.jboss.as.web*,
!io.undertow*,
</Import-Package>
</instructions>
</configuration>
Expand Down
Expand Up @@ -66,14 +66,12 @@ public static Archive<?> deployment() {

@Test
public void testPostConstruct() throws NamingException {
System.out.println("initOrder = " + initOrder);
Assert.assertEquals(2, initOrder.size());
Assert.assertEquals("MyServlet", initOrder.get(0));
Assert.assertEquals("MyEjb", initOrder.get(1));
}

public static void recordInit(final String clazz) {
System.out.println("adding class: " +clazz);
initOrder.add(clazz);
}

Expand Down
2 changes: 1 addition & 1 deletion testsuite/integration/pom.xml
Expand Up @@ -56,7 +56,7 @@
<module>osgi</module>
<module>iiop</module>
<module>xts</module>
<!--module>clust</module-->
<module>clust</module>
<module>multinode</module>
<module>manualmode</module>
</modules>
Expand Down
4 changes: 2 additions & 2 deletions testsuite/pom.xml
Expand Up @@ -492,8 +492,8 @@
<activation><property><name>allTests</name></property></activation>
<modules>
<module>integration</module>
<!--<module>compat</module>
<module>domain</module>-->
<module>compat</module>
<!--<module>domain</module>-->
</modules>
</profile>

Expand Down

0 comments on commit 45a268b

Please sign in to comment.