diff --git a/Sanity/opvp-driver-from-ArtifexSoftware/LICENSE b/Sanity/opvp-driver-from-ArtifexSoftware/LICENSE new file mode 100644 index 0000000..998183c --- /dev/null +++ b/Sanity/opvp-driver-from-ArtifexSoftware/LICENSE @@ -0,0 +1,2376 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ghostpdl/LICENSE at master · ArtifexSoftware/ghostpdl · GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+ Skip to content + + + + + + + + + + + + + + + + + + + + +
+
+ + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+ + + + + + +
+ + + + + + + + + +
+
+
+ + + + + + + + + + + + +
+ +
+ +
+ +
+ + + + / + + ghostpdl + + + Public +
+ + +
+ +
+ + +
+
+ +
+
+ + + + +
+ + + + + + +
+ + + + + + + + + + + + + + + +

Latest commit

 

History

History
41 lines (33 loc) · 1.93 KB

LICENSE

File metadata and controls

41 lines (33 loc) · 1.93 KB
+
+ + + + +
+ +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + diff --git a/Sanity/opvp-driver-from-ArtifexSoftware/main.fmf b/Sanity/opvp-driver-from-ArtifexSoftware/main.fmf new file mode 100644 index 0000000..b1730ca --- /dev/null +++ b/Sanity/opvp-driver-from-ArtifexSoftware/main.fmf @@ -0,0 +1,12 @@ +summary: Trying opvp-driver from ArtifexSoftware +test: ./test.sh +contact: psklenar@redhat.com +component: + - ghostscript +framework: beakerlib +require: + - git + - ghostscript + - gcc +duration: 35m +tier: '2' diff --git a/Sanity/opvp-driver-from-ArtifexSoftware/test.sh b/Sanity/opvp-driver-from-ArtifexSoftware/test.sh new file mode 100755 index 0000000..ad3752e --- /dev/null +++ b/Sanity/opvp-driver-from-ArtifexSoftware/test.sh @@ -0,0 +1,29 @@ +#!/bin/bash +# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k +. /usr/share/beakerlib/beakerlib.sh || exit 1 + +rlJournalStart + rlPhaseStartSetup + rlRun "tmp=\$(mktemp -d)" 0 "Create tmp directory" + rlRun "pushd $tmp" + rlRun "set -o pipefail" + rlPhaseEnd + + rlPhaseStartTest "Test" + [ -d ghostpdl ] || rlRun "git clone https://github.com/psklenar/ghostpdl.git" + rlRun "pushd ghostpdl/contrib/opvp/" + rlRun "./build_opv_harness.sh" + rlRun "ls libopv.so" + rlLog "$(ls)" + rlRun "popd" + rlRun "gs -sDEVICE=opvp -sDriver=./ghostpdl/contrib/opvp/libopv.so -o output.txt -f ./ghostpdl/examples/*.*" + rlRun "grep opvpOpenPrinter opvp_command_dump.txt" + rlPhaseEnd + + rlPhaseStartCleanup + rlFileSubmit opvp_command_dump.txt + rlFileSubmit output.txt + rlRun "popd" + rlRun "rm -r $tmp" 0 "Remove tmp directory" + rlPhaseEnd +rlJournalEnd