diff options
author | Russ Allbery <rra@stanford.edu> | 2010-02-09 21:01:33 -0800 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2010-02-09 21:01:33 -0800 |
commit | a556c732806da87d06bb787565e12240ea39b553 (patch) | |
tree | 960b3a5e8fc32b4cb5399d56d20a3db077ef86b8 /tests/data | |
parent | ff2d5ac3c63af9833d884d4840c772e60e45da7d (diff) |
Stop doing Autoconf substitution on some test suite code
Anything that only was using substitution for the paths to the build
tree now uses $SOURCE and $BUILD instead. Stop doing substitution.
Also fix tests/data/cmd-wrapper to use the environment variables.
Diffstat (limited to 'tests/data')
-rwxr-xr-x[-rw-r--r--] | tests/data/cmd-wrapper (renamed from tests/data/cmd-wrapper.in) | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/data/cmd-wrapper.in b/tests/data/cmd-wrapper index 7c7b342..79b1943 100644..100755 --- a/tests/data/cmd-wrapper.in +++ b/tests/data/cmd-wrapper @@ -3,7 +3,6 @@ # Wrapper around the standard wallet-backend script that sets the Perl INC # path and the WALLET_CONFIG environment variable appropriately. -WALLET_CONFIG='@abs_top_srcdir@/tests/data/wallet.conf' +WALLET_CONFIG="$SOURCE/data/wallet.conf" export WALLET_CONFIG -exec perl -I'@abs_top_srcdir@/perl' '@abs_top_srcdir@/server/wallet-backend' \ - -q "$@" +exec perl -I"$SOURCE/../perl" "$SOURCE/../server/wallet-backend" -q "$@" |