From 97b70025478abc68f3a6529f4517d00792b94186 Mon Sep 17 00:00:00 2001 From: olszomal Date: Tue, 23 Jul 2019 11:39:42 +0200 Subject: [PATCH] required packages --- tests/testall.sh | 34 +++++++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/tests/testall.sh b/tests/testall.sh index fde0eb6..8a9faa3 100755 --- a/tests/testall.sh +++ b/tests/testall.sh @@ -13,12 +13,36 @@ mkdir "${result_path}" cd "${result_path}" date > "results.log" -touch FoobarAppl10.exe -cp "../sample.wxs" "sample.wxs" 2>> "results.log" 1>&2 +../../osslsigncode -v >> "results.log" 2>/dev/null -x86_64-w64-mingw32-gcc "../myapp.c" -o "test.exe" 2>> "results.log" 1>&2 -gcab -c "test.ex_" "test.exe" 2>> "results.log" 1>&2 -wixl -v "sample.wxs" 2>> "results.log" 1>&2 +if [ -n "$(command -v x86_64-w64-mingw32-gcc)" ] + then + x86_64-w64-mingw32-gcc "../myapp.c" -o "test.exe" 2>> "results.log" 1>&2 + else + printf "%s\n" "x86_64-w64-mingw32-gcc not found in \$PATH" + printf "%s\n" "tests for PE files skipped, please install mingw64-gcc package" + fi +if [ -n "$(command -v gcab)" ] + then + gcab -c "test.ex_" "test.exe" 2>> "results.log" 1>&2 + else + printf "%s\n" "gcab not found in \$PATH" + printf "%s\n" "tests for CAB files skipped, please install gcab package" + fi +if grep -o "no libgsf available" "results.log" + then + printf "%s\n" "signing MSI files requires libgsf/libgsf-devel packages and reconfiguration osslsigncode" + else + if [ -n "$(command -v wixl)" ] + then + touch FoobarAppl10.exe + cp "../sample.wxs" "sample.wxs" 2>> "results.log" 1>&2 + wixl -v "sample.wxs" 2>> "results.log" 1>&2 + else + printf "%s\n" "wixl not found in \$PATH" + printf "%s\n" "tests for MSI files skipped, please install msitools package" + fi + fi for plik in ${script_path}/recipes/* do