summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog4
-rwxr-xr-xdebian/rules8
2 files changed, 7 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index c74b1280f9..9afb2d3c4e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
tor (0.2.2.4-alpha-1) experimental; urgency=low
* New upstream version.
+ * The testsuite moved from src/or/test to src/test/test,
+ but let's call it using "make check" now.
- -- Peter Palfrader <weasel@debian.org> Sun, 11 Oct 2009 10:19:03 +0200
+ -- Peter Palfrader <weasel@debian.org> Sun, 11 Oct 2009 10:19:21 +0200
tor (0.2.2.3-alpha-1) experimental; urgency=low
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"; \