summaryrefslogtreecommitdiff
path: root/gr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py
diff options
context:
space:
mode:
authorJohnathan Corgan2010-10-06 12:52:44 -0700
committerJohnathan Corgan2010-10-06 12:52:44 -0700
commit1c936ad101cbd7edf8e6b96bf3f993163a7dcc7b (patch)
treed118e6dd1ab5c59fcf0257d256843a047ad55e39 /gr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py
parent9ccd86714958fb2bd0cdc457745737f6d20efd7f (diff)
parent125433fe84507cc84e585c1e06bb804fdb2ce043 (diff)
downloadgnuradio-1c936ad101cbd7edf8e6b96bf3f993163a7dcc7b.tar.gz
gnuradio-1c936ad101cbd7edf8e6b96bf3f993163a7dcc7b.tar.bz2
gnuradio-1c936ad101cbd7edf8e6b96bf3f993163a7dcc7b.zip
Merge branch 'master' into next
* master: Fixed setting of USB_LIBS for *win* Fix so that non-Darwin OSs use USB_LIBS correctly for linking New way of checking for various LIBUSB names; for legacy version, make sure the symbol 'usb_debug' exists (so-as to not use the 'compat' version). Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API. Fixed gitignore to reflect changes in moc/ui file naming. Fixes a lot of warnings by cleaning up namespace issues. Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing qwtplot3d dependency and fixing a missed include in waterfallGlobalData.h. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API. Updating all of the QA code that I can actually test to work with the new XML output runners. Updating all python QA programs in gnuradio-core to output XML files. Adding gr_xmlrunner.py to Makefile. Adding XML output to Python unittests. Modified gcell and gr-atsc cppunit tests to output XML files, too. Gcell needs testing. Moving XML output files from cppunit tests to $HOME/.gnuradio/unittests. Adding an XML outputter for the CPP Unit tests. This is to a) store the output information but also b) for integration with Hudson for logging and displaying the results during the build stages. This only covers a few cases so far and I need to define a better place to save the output files.
Diffstat (limited to 'gr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py')
-rwxr-xr-xgr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py b/gr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py
index ac5084072..4164a1965 100755
--- a/gr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py
+++ b/gr-gsm-fr-vocoder/src/python/qa_gsm_full_rate.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2004,2007 Free Software Foundation, Inc.
+# Copyright 2004,2007,2010 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -23,7 +23,7 @@
from gnuradio import gr, gr_unittest
import gsm_full_rate
-class qa_howto (gr_unittest.TestCase):
+class test_gsm_vocoder (gr_unittest.TestCase):
def setUp (self):
self.tb = gr.top_block ()
@@ -32,4 +32,4 @@ class qa_howto (gr_unittest.TestCase):
self.tb = None
if __name__ == '__main__':
- gr_unittest.main ()
+ gr_unittest.run(test_gsm_vocoder, "test_gsm_vocoder.xml")