From c25e5a47c6c5eae669ab481cea4fcaf5bd9b45eb Mon Sep 17 00:00:00 2001 From: Zdenek Dohnal Date: Wed, 10 Jul 2024 12:04:27 +0200 Subject: [PATCH] Merge psklenar's changes --- Sanity/opvp-driver-from-ArtifexSoftware/test.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Sanity/opvp-driver-from-ArtifexSoftware/test.sh b/Sanity/opvp-driver-from-ArtifexSoftware/test.sh index ad3752e..72405e9 100755 --- a/Sanity/opvp-driver-from-ArtifexSoftware/test.sh +++ b/Sanity/opvp-driver-from-ArtifexSoftware/test.sh @@ -4,6 +4,7 @@ rlJournalStart rlPhaseStartSetup + rlLog "`rpm -q ghostscript`" rlRun "tmp=\$(mktemp -d)" 0 "Create tmp directory" rlRun "pushd $tmp" rlRun "set -o pipefail" @@ -16,7 +17,12 @@ rlJournalStart 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 "ls ./ghostpdl/examples" + for i in $(ls ./ghostpdl/examples/*.*);do + rlLog "file $i" + rlRun "gs -sDEVICE=opvp -sDriver=./ghostpdl/contrib/opvp/libopv.so -o output.txt -f $i" + rlLog "--------------------" + done rlRun "grep opvpOpenPrinter opvp_command_dump.txt" rlPhaseEnd