aboutsummaryrefslogtreecommitdiffstats
path: root/tests/make-windows-cd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/make-windows-cd.sh')
-rw-r--r--tests/make-windows-cd.sh32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/make-windows-cd.sh b/tests/make-windows-cd.sh
new file mode 100644
index 000000000..f4c686a12
--- /dev/null
+++ b/tests/make-windows-cd.sh
@@ -0,0 +1,32 @@
+#!/bin/sh
+
+set -e
+
+if ! [ -f config.log ] || ! grep -q mingw config.log; then
+ echo "must be run from a configured windows build environment"
+fi
+
+[ -z "$w32root" ] && w32root="$HOME/w32root"
+ADDITIONAL_FILES=
+IMAGE=gnupg-test.iso
+
+[ -f make-windows-cd.rc ] && . make-windows-cd.rc
+
+# we pick binaries from the prefix, so make sure they are current.
+make install
+
+WORKDIR="$(mktemp --directory)"
+TARGET="${WORKDIR}/gnupg"
+
+mkdir "$TARGET"
+
+[ "$ADDITIONAL_FILES" ] && cp -v $(ls -1 $ADDITIONAL_FILES) $TARGET
+cp -v $w32root/bin/*.exe $w32root/bin/*.dll $TARGET
+cp -v tests/gpgscm/*.exe $TARGET
+cp -v tools/mk-tdata.exe $TARGET
+cp -v agent/gpg-preset-passphrase.exe $TARGET
+cp -v -a ../tests $TARGET
+cp -v tests/openpgp/fake-pinentry.exe $TARGET/tests/openpgp
+cp -v ../tests/run-tests.bat $WORKDIR
+genisoimage --output "$IMAGE" -J "$WORKDIR"
+[ "${WORKDIR}" ] && rm -rf -- "${WORKDIR}"