From: Niels Möller Date: Sun, 16 Sep 2012 06:00:21 +0000 (+0200) Subject: Don't quote $EMULATOR; allow it to expand to program and arguments. X-Git-Tag: nettle_2.6_release_20130116~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a73862a5229bc53142b19a1608d9b5125908eb4;p=thirdparty%2Fnettle.git Don't quote $EMULATOR; allow it to expand to program and arguments. --- diff --git a/ChangeLog b/ChangeLog index 6f16f747..cdac8ae7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2012-09-16 Niels Möller + * run-tests (test_program): Don't quote $EMULATOR; allow it to + expand to program and arguments (e.g., valgrind). + * tools/pkcs1-conv.c (convert_public_key): Added missing calls to dsa_public_key_clear and rsa_public_key_clear. (main): Added missing nettle_buffer_clear. diff --git a/run-tests b/run-tests index 560cc4e0..e77e6a63 100755 --- a/run-tests +++ b/run-tests @@ -44,7 +44,7 @@ test_program () { if [ -z "$EMULATOR" ] || head -1 "$1" | grep '^#!' > /dev/null; then "$1" $testflags else - "$EMULATOR" "$1" $testflags + $EMULATOR "$1" $testflags fi case "$?" in 0)