Print

Print


Author: [log in to unmask]
Date: Tue May 31 18:19:59 2016
New Revision: 4387

Log:
exclude several broken ITs

Modified:
    java/trunk/integration-tests/pom.xml

Modified: java/trunk/integration-tests/pom.xml
 =============================================================================
--- java/trunk/integration-tests/pom.xml	(original)
+++ java/trunk/integration-tests/pom.xml	Tue May 31 18:19:59 2016
@@ -50,14 +50,19 @@
                 <artifactId>maven-failsafe-plugin</artifactId>
                 <version>2.19.1</version>
                 <configuration>
-                    <argLine>-server -Xmx2g -XX:MaxPermSize=512m -Djava.util.logging.config.class=org.hps.logging.config.TestLoggingConfig</argLine>
+                    <argLine>-server -Xmx2g -XX:MaxPermSize=512m</argLine>
                     <forkCount>1</forkCount>
                     <reuseForks>false</reuseForks>
                     <includes>
                         <include>org/hps/test/it/*Test.java</include>
                     </includes>
+                    <excludes>
+                        <exclude>**/EcalSimReconTest.java</exclude>
+                        <exclude>**/DataQualityMonitorTest.java</exclude>
+                    </excludes>
                     <systemPropertyVariables>
                         <org.lcsim.cacheDir>${org.lcsim.cacheDir}</org.lcsim.cacheDir>
+                        <java.util.logging.config.class>org.hps.logging.config.TestLoggingConfig</java.util.logging.config.class>
                     </systemPropertyVariables>
                 </configuration>
                 <executions>