Skip to content

Commit

Permalink
java.lang.UnsatisfiedLinkError: no awt in java.library.path in native…
Browse files Browse the repository at this point in the history
… tests
  • Loading branch information
ffang authored and jamesnetherton committed Jan 19, 2022
1 parent c060ee3 commit 0d0f0f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@
package org.apache.camel.quarkus.component.pdf.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/3417
@DisabledOnOs(OS.MAC)
class PdfIT extends PdfTest {

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@
package org.apache.camel.quarkus.component.tika.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/3417
@DisabledOnOs(OS.MAC)
class TikaIT extends TikaTest {

}

0 comments on commit 0d0f0f1

Please sign in to comment.