You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@knox.apache.org by "Dilli Arumugam (JIRA)" <ji...@apache.org> on 2014/02/12 22:40:19 UTC

[jira] [Updated] (KNOX-259) fix broken system tests in gateway-test module

     [ https://issues.apache.org/jira/browse/KNOX-259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dilli Arumugam updated KNOX-259:
--------------------------------

    Attachment: KNOX-259.patch

patch to fix issue

pasting content in place to make it easy to see the change

diff --git a/gateway-test/pom.xml b/gateway-test/pom.xml
index f58ae40..4b70a1e 100644
--- a/gateway-test/pom.xml
+++ b/gateway-test/pom.xml
@@ -149,5 +149,24 @@
         </dependency>
 
     </dependencies>
-
-</project>
\ No newline at end of file
+   
+   <build>
+        <plugins>
+           <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <version>2.16</version>
+                <configuration>
+                    <forkCount>1</forkCount>
+                    <reuseForks>false</reuseForks>
+                    <excludedGroups>
+                        org.apache.hadoop.test.category.SlowTests,org.apache.hadoop.test.category.ManualTests,org.apache.hadoop.test.category.IntegrationTests
+                    </excludedGroups>
+                    <systemPropertyVariables>
+                        <gateway-version>${gateway-version}</gateway-version>
+                    </systemPropertyVariables>
+                </configuration>
+            </plugin>
+        </plugins>
+
+   </build>
+</project>



> fix broken system tests in gateway-test module
> ----------------------------------------------
>
>                 Key: KNOX-259
>                 URL: https://issues.apache.org/jira/browse/KNOX-259
>             Project: Apache Knox
>          Issue Type: Bug
>            Reporter: Dilli Arumugam
>            Assignee: Dilli Arumugam
>         Attachments: KNOX-259.patch
>
>
> After the push of fix for KNOX-254,  mvn test under module gateway-test reports build failure. This needs to be researched and fixed.
> It is likely todo with concurrent running of tests that are modifying topology files and/or security stores.



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)