From: Zooko O'Whielacronx zooko@zooko.com <zooko@zooko.com>
Date: Fri, 27 Apr 2007 18:11:54 +0000 (+0530)
Subject: zfec: invoke test_util as well as test_zfec when you execute "./setup.py test"
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/flags/%22file:/%22news.html/%3C?a=commitdiff_plain;h=8f2dca87cdb3747fff0e597a0b6311b449e9017e;p=tahoe-lafs%2Fzfec.git

zfec: invoke test_util as well as test_zfec when you execute "./setup.py test"

darcs-hash:957a39aa21d1e6bdc3b042c84baaff424aa17d2b
---

diff --git a/zfec/setup.py b/zfec/setup.py
index cb5625d..4e90803 100755
--- a/zfec/setup.py
+++ b/zfec/setup.py
@@ -70,5 +70,5 @@ setup(name='zfec',
       classifiers=trove_classifiers,
       entry_points = { 'console_scripts': [ 'zfec = zfec.cmdline_zfec:main', 'zunfec = zfec.cmdline_zunfec:main' ] },
       ext_modules=[Extension('_fec', ['zfec/fec.c', 'zfec/_fecmodule.c',], extra_link_args=extra_link_args, extra_compile_args=extra_compile_args, undef_macros=undef_macros),],
-      test_suite="zfec.test.test_zfec",
+      test_suite="zfec.test",
       )