Updated Branches: refs/heads/trunk a67be676c -> 401c0e202
WHIRR-646. Integration tests should have failsafe timeouts. Contributed by abayer. Project: http://git-wip-us.apache.org/repos/asf/whirr/repo Commit: http://git-wip-us.apache.org/repos/asf/whirr/commit/401c0e20 Tree: http://git-wip-us.apache.org/repos/asf/whirr/tree/401c0e20 Diff: http://git-wip-us.apache.org/repos/asf/whirr/diff/401c0e20 Branch: refs/heads/trunk Commit: 401c0e20230b1d3cd37f72de22d1436523dfbf50 Parents: a67be67 Author: Tom White <tomwh...@apache.org> Authored: Thu Sep 20 21:52:26 2012 +0100 Committer: Tom White <tomwh...@apache.org> Committed: Thu Sep 20 21:52:26 2012 +0100 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ pom.xml | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/whirr/blob/401c0e20/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index e836495..c3a0183 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -28,6 +28,9 @@ Release 0.8.1 (unreleased changes) WHIRR-648. CDH repo install removes other repos with same prefix. (Graham Gear via tomwhite) + WHIRR-646. Integration tests should have failsafe timeouts. + (abayer via tomwhite) + Release 0.8.0 - 2012-08-17 NEW FEATURES http://git-wip-us.apache.org/repos/asf/whirr/blob/401c0e20/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 8b47c00..e0ceabb 100644 --- a/pom.xml +++ b/pom.xml @@ -394,7 +394,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.11</version> + <version>2.12</version> <configuration> <excludes> <exclude>**/integration/*Test.java</exclude> @@ -621,8 +621,9 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> - <version>2.11</version> + <version>2.12</version> <configuration> + <forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds> <includes> <include>**/integration/*Test.java</include> </includes>