From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Fri, 27 Apr 2007 18:11:54 +0000 (-0700)
Subject: zfec: invoke test_util as well as test_zfec when you execute "./setup.py test"
X-Git-Tag: allmydata-tahoe_v0.1.1-1-UNSTABLE~26
X-Git-Url: https://git.rkrishnan.org/%5B/frontends/index.php?a=commitdiff_plain;h=07baf1fd917e75f75dc0ca9d04efa2ee7446fe4d;p=tahoe-lafs%2Ftahoe-lafs.git

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

diff --git a/src/zfec/setup.py b/src/zfec/setup.py
index cb5625da..4e908034 100644
--- a/src/zfec/setup.py
+++ b/src/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",
       )