../.lib into wine's dll search path, so create additional
symlinks.
* testsuite/teardown-env: ...and delete them here.
Rev: nettle/testsuite/setup-env:1.1
Rev: nettle/testsuite/teardown-env:1.2
--- /dev/null
+#! /bin/sh
+
+set -e
+
+# Workaround, it seems difficult to convince wine to put ../lib into PATH.
+case "$EMULATOR" in
+ wine*)
+ for f in ../.lib/*.dll ; do
+ ln -s "$f" .
+ done
+ ;;
+esac
#! /bin/sh
rm -rf testkey.priv testkey.pub testsignature testsignature2
+
+case "$EMULATOR" in
+ wine*)
+ rm `find . -type l -name '*.dll'`
+ ;;
+esac