From: cypherpunks Date: Wed, 1 Jul 2015 09:08:33 +0000 (+0200) Subject: Use the configured Python executable to run test-stem-full. X-Git-Tag: tor-0.2.7.2-alpha~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65a1e27bc42a1cdbb4a920597b3424f7fe065d9c;p=thirdparty%2Ftor.git Use the configured Python executable to run test-stem-full. --- diff --git a/Makefile.am b/Makefile.am index 316086c1e1..87a5d8adcc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -84,7 +84,7 @@ test-stem: $(TESTING_TOR_BINARY) test-stem-full: $(TESTING_TOR_BINARY) @if test -d "$$STEM_SOURCE_DIR"; then \ - "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL,ONLINE -v; \ + $(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL,ONLINE -v; \ else \ echo '$$STEM_SOURCE_DIR was not set.'; echo; \ echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \ diff --git a/changes/bug16470 b/changes/bug16470 new file mode 100644 index 0000000000..3d1b419f6b --- /dev/null +++ b/changes/bug16470 @@ -0,0 +1,3 @@ + o Minor bugfixes (tests): + - Use the configured Python executable when running test-stem-full. Fixes + bug 16470; bugfix on 0.2.7.1-alpha.