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 2021/11/22 07:29:21 UTC

[camel-quarkus] branch main updated: Disable FOP integration test failed in native mode on Mac OS #3280

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


The following commit(s) were added to refs/heads/main by this push:
     new 86f7cc8  Disable FOP integration test failed in native mode on Mac OS #3280
86f7cc8 is described below

commit 86f7cc8fb89fe63efdb3204ceae37407808f336a
Author: Freeman Fang <fr...@gmail.com>
AuthorDate: Fri Nov 19 15:04:54 2021 -0500

    Disable FOP integration test failed in native mode on Mac OS #3280
---
 .../test/java/org/apache/camel/quarkus/component/fop/it/FopIT.java    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/integration-tests/fop/src/test/java/org/apache/camel/quarkus/component/fop/it/FopIT.java b/integration-tests/fop/src/test/java/org/apache/camel/quarkus/component/fop/it/FopIT.java
index 94dce28..2f34f62 100644
--- a/integration-tests/fop/src/test/java/org/apache/camel/quarkus/component/fop/it/FopIT.java
+++ b/integration-tests/fop/src/test/java/org/apache/camel/quarkus/component/fop/it/FopIT.java
@@ -17,8 +17,12 @@
 package org.apache.camel.quarkus.component.fop.it;
 
 import io.quarkus.test.junit.NativeImageTest;
+import org.junit.jupiter.api.condition.DisabledOnOs;
+import org.junit.jupiter.api.condition.OS;
 
 @NativeImageTest
+//https://github.com/apache/camel-quarkus/issues/3280
+@DisabledOnOs(OS.MAC)
 class FopIT extends FopTest {
 
 }