You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by se...@apache.org on 2015/09/20 02:17:46 UTC

flink git commit: [tempfix] [streaming] Disable fork reuse in streaming tests

Repository: flink
Updated Branches:
  refs/heads/master 3e233a389 -> 031aa4d2a


[tempfix] [streaming] Disable fork reuse in streaming tests

The streaming tests violate the UnitTest / IntegrationTest patterns and hence cannot reuse
JVMs for Unit Tests.


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/031aa4d2
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/031aa4d2
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/031aa4d2

Branch: refs/heads/master
Commit: 031aa4d2ac08ee3ea03c5f6e4e55861a306296b8
Parents: 3e233a3
Author: Stephan Ewen <se...@apache.org>
Authored: Sat Sep 19 18:05:28 2015 +0200
Committer: Stephan Ewen <se...@apache.org>
Committed: Sun Sep 20 02:17:07 2015 +0200

----------------------------------------------------------------------
 .../flink-streaming/flink-streaming-core/pom.xml          | 10 ++++++++++
 1 file changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/031aa4d2/flink-staging/flink-streaming/flink-streaming-core/pom.xml
----------------------------------------------------------------------
diff --git a/flink-staging/flink-streaming/flink-streaming-core/pom.xml b/flink-staging/flink-streaming/flink-streaming-core/pom.xml
index a4eb6a9..cebb538 100644
--- a/flink-staging/flink-streaming/flink-streaming-core/pom.xml
+++ b/flink-staging/flink-streaming/flink-streaming-core/pom.xml
@@ -100,6 +100,16 @@ under the License.
 					</execution>
 				</executions>
 			</plugin>
+
+			<!-- disable fork reuse for the streaming project, because of
+			incorrect declaration of tests -->
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<reuseForks>false</reuseForks>
+				</configuration>
+			</plugin>
 		</plugins>
 	</build>