diff options
author | Peter Palfrader <peter@palfrader.org> | 2009-10-11 10:19:45 +0200 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2009-10-11 10:19:45 +0200 |
commit | 51a3afd6ac2bd2f48165d834dcde01d2893ca4f1 (patch) | |
tree | b79071a736063b77bb95a111491cb359ff67ae97 /debian/rules | |
parent | f58b39075c59a4e354836fd6fc8aaacde1fbdabf (diff) | |
download | tor-51a3afd6ac2bd2f48165d834dcde01d2893ca4f1.tar.gz tor-51a3afd6ac2bd2f48165d834dcde01d2893ca4f1.zip |
New testsuite location
The testsuite moved from src/or/test to src/test/test, but let's call it
using "make check" now.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/rules b/debian/rules index 0de4103742..d164d4c753 100755 --- a/debian/rules +++ b/debian/rules @@ -91,11 +91,11 @@ build-stamp: config.status @if [ "$(RUN_TEST)" != "no" ]; then \ if [ "$(LOCALHOST_IP)" != "127.0.0.1" ]; then \ echo; echo; echo "######################################################################"; echo "WARNING: This system does not think localhost is 127.0.0.1. Will ignore result of testsuite. Please fix your system/chroot."; echo "######################################################################"; echo; echo; \ - echo "src/or/test || true"; \ - src/or/test || true; \ + echo "make check || true"; \ + make check || true; \ else \ - echo "src/or/test"; \ - src/or/test; \ + echo "make check"; \ + make check; \ fi; \ else \ echo -e "\n\nSkipping unittests\n\n"; \ |