Skip to content
Snippets Groups Projects
Commit b2b50cc3 authored by Niels Möller's avatar Niels Möller
Browse files

* testsuite/setup-env: New file. Wine workaround. Can't get

../.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
parent 62fcc500
No related branches found
No related tags found
No related merge requests found
#! /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 #! /bin/sh
rm -rf testkey.priv testkey.pub testsignature testsignature2 rm -rf testkey.priv testkey.pub testsignature testsignature2
case "$EMULATOR" in
wine*)
rm `find . -type l -name '*.dll'`
;;
esac
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment