FELIX-4630: Adding PerformanceTestIT to measure difference between send and post events
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1623433 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/eventadmin/impl/pom.xml b/eventadmin/impl/pom.xml
index 12f6fcb..d24ba71 100644
--- a/eventadmin/impl/pom.xml
+++ b/eventadmin/impl/pom.xml
@@ -44,6 +44,8 @@
<bundle.file.name>
${bundle.build.name}/${project.build.finalName}.jar
</bundle.file.name>
+ <!-- This is a placeholder to enable perf tests with the perftest profile -->
+ <additional.ittests>NONE</additional.ittests>
</properties>
<dependencies>
@@ -192,30 +194,42 @@
</instructions>
</configuration>
</plugin>
- <!-- integration tests run with pax-exam -->
- <plugin>
- <artifactId>maven-failsafe-plugin</artifactId>
- <version>2.12</version>
- <executions>
- <execution>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <systemProperties>
- <property>
- <name>project.bundle.file</name>
- <value>${bundle.file.name}</value>
- </property>
- </systemProperties>
- <includes>
- <include>**/*IT.java</include>
- </includes>
- </configuration>
- </plugin>
+ <!-- integration tests run with pax-exam -->
+ <plugin>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <version>2.12</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>integration-test</goal>
+ <goal>verify</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <systemProperties>
+ <property>
+ <name>project.bundle.file</name>
+ <value>${bundle.file.name}</value>
+ </property>
+ </systemProperties>
+ <includes>
+ <include>**/ittests/*IT.java</include>
+ <include>${additional.ittests}</include>
+ </includes>
+ </configuration>
+ </plugin>
</plugins>
</build>
+ <profiles>
+ <profile>
+ <id>perftest</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ </activation>
+ <properties>
+ <additional.ittests>**/perftests/*IT.java</additional.ittests>
+ </properties>
+ </profile>
+ </profiles>
</project>