diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..f1bb5dd --- /dev/null +++ b/gating.yaml @@ -0,0 +1,7 @@ +--- !Policy +product_versions: + - rhel-9 +decision_contexts: + - osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/plans/JansiLoadLibrary.class b/plans/JansiLoadLibrary.class new file mode 100644 index 0000000..57babc6 Binary files /dev/null and b/plans/JansiLoadLibrary.class differ diff --git a/plans/JansiLoadLibrary.java b/plans/JansiLoadLibrary.java new file mode 100644 index 0000000..1b05101 --- /dev/null +++ b/plans/JansiLoadLibrary.java @@ -0,0 +1,8 @@ +// Compile with: +// $ javac -cp /usr/lib/java/jansi/jansi.jar JansiLoadLibrary.java + +class JansiLoadLibrary { + public static void main(String[] args) { + org.fusesource.jansi.internal.JansiLoader.initialize(); + } +} diff --git a/plans/smoke.fmf b/plans/smoke.fmf new file mode 100644 index 0000000..140921c --- /dev/null +++ b/plans/smoke.fmf @@ -0,0 +1,5 @@ +summary: Basic smoke test +execute: + script: + - dnf -y install java-11-openjdk-headless + - /usr/lib/jvm/jre-11-openjdk/bin/java -cp /usr/lib/java/jansi/jansi.jar:plans JansiLoadLibrary