You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2017/11/07 10:20:07 UTC

[sling-org-apache-sling-testing-paxexam] 27/48: SLING-5897 Fail the test by default if there are unresolved bundles

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to annotated tag org.apache.sling.testing.paxexam-0.0.2
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-testing-paxexam.git

commit b95b3a6d4478c2ee5d2b6989682099a9e019a7eb
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Thu Jul 28 08:31:04 2016 +0000

    SLING-5897 Fail the test by default if there are unresolved bundles
    
    make it an Option
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/testing/org.apache.sling.testing.paxexam@1754362 13f79535-47bb-0310-9956-ffa450edef68
---
 src/main/java/org/apache/sling/testing/paxexam/TestSupport.java | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/testing/paxexam/TestSupport.java b/src/main/java/org/apache/sling/testing/paxexam/TestSupport.java
index 26bb405..629768c 100644
--- a/src/main/java/org/apache/sling/testing/paxexam/TestSupport.java
+++ b/src/main/java/org/apache/sling/testing/paxexam/TestSupport.java
@@ -65,14 +65,18 @@ public abstract class TestSupport {
 
     protected Option baseConfiguration() {
         return composite(
+            failOnUnresolvedBundles(),
             localMavenRepo(),
-            systemProperty("pax.exam.osgi.unresolved.fail").value("true"),
             keepCaches(),
             CoreOptions.workingDirectory(workingDirectory()),
             mavenBundle().groupId("org.apache.sling").artifactId("org.apache.sling.testing.paxexam").versionAsInProject()
         );
     }
 
+    protected Option failOnUnresolvedBundles() {
+        return systemProperty("pax.exam.osgi.unresolved.fail").value("true");
+    }
+
     protected Option localMavenRepo() {
         final String localRepository = System.getProperty("maven.repo.local", ""); // PAXEXAM-543
         return when(localRepository.length() > 0).useOptions(

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.