You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2024/03/15 11:51:55 UTC

(camel-quarkus) branch main updated (0c557ca73f -> 8dc7b7444d)

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

jamesnetherton pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


    from 0c557ca73f Switch from org.graalvm.sdk:graal-sdk to org.graalvm.sdk:nativeimage
     new ea602f92cb Revert "Disable java-joor-dsl tests on Windows due to #5872"
     new 8dc7b7444d Revert "Disable jsh-dsl tests on Windows due to #5873"

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java   | 3 ---
 .../src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java     | 3 ---
 2 files changed, 6 deletions(-)


(camel-quarkus) 01/02: Revert "Disable java-joor-dsl tests on Windows due to #5872"

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit ea602f92cb77769f66369e2221a19d829de06a49
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Mar 15 10:14:06 2024 +0000

    Revert "Disable java-joor-dsl tests on Windows due to #5872"
    
    This reverts commit 0e7617ba2999d7671521e7dc89cb75f42c58f7be.
    
    Fixes #5872
---
 .../java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java   | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java b/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java
index 526fdb133c..767196aeaf 100644
--- a/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java
+++ b/integration-tests/java-joor-dsl/src/test/java/org/apache/camel/quarkus/dsl/java/joor/JavaJoorDslTest.java
@@ -21,12 +21,9 @@ import io.restassured.RestAssured;
 import org.apache.camel.dsl.java.joor.JavaRoutesBuilderLoader;
 import org.hamcrest.CoreMatchers;
 import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.condition.DisabledOnOs;
-import org.junit.jupiter.api.condition.OS;
 
 import static org.hamcrest.CoreMatchers.equalTo;
 
-@DisabledOnOs(value = OS.WINDOWS, disabledReason = "https://github.com/apache/camel-quarkus/issues/5872")
 @QuarkusTest
 class JavaJoorDslTest {
 


(camel-quarkus) 02/02: Revert "Disable jsh-dsl tests on Windows due to #5873"

Posted by ja...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jamesnetherton pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 8dc7b7444d3e48dfd6e147e87651a84e6a552c33
Author: James Netherton <ja...@gmail.com>
AuthorDate: Fri Mar 15 10:14:19 2024 +0000

    Revert "Disable jsh-dsl tests on Windows due to #5873"
    
    This reverts commit 57adf97dd61f613d16b741039e2491dd6821e757.
    
    Fixes #5873
---
 .../src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java     | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java b/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java
index 3b00a31128..62a3c27b91 100644
--- a/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java
+++ b/integration-tests/jsh-dsl/src/test/java/org/apache/camel/quarkus/dsl/jsh/JshDslTest.java
@@ -21,10 +21,7 @@ import io.restassured.RestAssured;
 import org.apache.camel.dsl.jsh.JshRoutesBuilderLoader;
 import org.hamcrest.CoreMatchers;
 import org.junit.jupiter.api.Test;
-import org.junit.jupiter.api.condition.DisabledOnOs;
-import org.junit.jupiter.api.condition.OS;
 
-@DisabledOnOs(value = OS.WINDOWS, disabledReason = "https://github.com/apache/camel-quarkus/issues/5873")
 @QuarkusTest
 class JshDslTest {