summaryrefslogtreecommitdiff
path: root/gr-trellis
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2010-10-04 20:18:46 -0400
committerTom Rondeau <trondeau@vt.edu>2010-10-04 20:18:46 -0400
commit2652a20330ea1238d561ce799c40833e46d3508c (patch)
tree18e33f06998841b4d8ea63a1c55374c4728d2f8f /gr-trellis
parent2104a9d1b2c964ec0f710f3209bb4a63cc7ae548 (diff)
Updating all of the QA code that I can actually test to work with the new XML output runners.
Diffstat (limited to 'gr-trellis')
-rwxr-xr-xgr-trellis/src/python/qa_trellis.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/gr-trellis/src/python/qa_trellis.py b/gr-trellis/src/python/qa_trellis.py
index 306bf994df..cfeefea061 100755
--- a/gr-trellis/src/python/qa_trellis.py
+++ b/gr-trellis/src/python/qa_trellis.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2004 Free Software Foundation, Inc.
+# Copyright 2004,2010 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -23,7 +23,7 @@
from gnuradio import gr, gr_unittest
import trellis
-class qa_trellis (gr_unittest.TestCase):
+class test_trellis (gr_unittest.TestCase):
def setUp (self):
self.tb = gr.top_block ()
@@ -68,11 +68,5 @@ class qa_trellis (gr_unittest.TestCase):
i = trellis.interleaver(K,IN)
self.assertEqual((K,IN,DIN),(i.K(),i.INTER(),i.DEINTER()))
-
-
-
-
-
-
if __name__ == '__main__':
- gr_unittest.main ()
+ gr_unittest.run(test_trellis, "test_trellis.xml")