[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] r7003 - gnuradio/branches/developers/jcorgan/t202/gnur
From: |
jcorgan |
Subject: |
[Commit-gnuradio] r7003 - gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr |
Date: |
Mon, 19 Nov 2007 12:13:25 -0700 (MST) |
Author: jcorgan
Date: 2007-11-19 12:13:23 -0700 (Mon, 19 Nov 2007)
New Revision: 7003
Modified:
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_bin_statistics.py
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_cma_equalizer.py
Log:
Disable qa_bin_statistics.py, see ticket:199
Modified:
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_bin_statistics.py
===================================================================
---
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_bin_statistics.py
2007-11-19 18:35:12 UTC (rev 7002)
+++
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_bin_statistics.py
2007-11-19 19:13:23 UTC (rev 7003)
@@ -28,6 +28,10 @@
#print "pid =", os.getpid()
#raw_input("Attach gdb and press return...")
+"""
+Note: The QA tests below have been disabled by renaming them from test_*
+to xtest_*. See ticket:199 on http://gnuradio.org/trac/ticket/199
+"""
class counter(gr.feval_dd):
def __init__(self, step_size=1):
@@ -90,7 +94,7 @@
self.data = struct.unpack('%df' % (self.vlen,), msg.to_string())
-class test_bin_statistics(gr_unittest.TestCase):
+class xtest_bin_statistics(gr_unittest.TestCase):
def setUp(self):
self.tb = gr.top_block ()
@@ -98,7 +102,7 @@
def tearDown(self):
self.tb = None
- def test_001(self):
+ def xtest_001(self):
vlen = 4
tune = counter(1)
tune_delay = 0
@@ -130,7 +134,7 @@
#print "m =", m.center_freq, m.data
self.assertEqual(expected_results[vlen*i:vlen*i + vlen], m.data)
- def test_002(self):
+ def xtest_002(self):
vlen = 4
tune = counter(1)
tune_delay = 1
@@ -160,7 +164,7 @@
- def test_003(self):
+ def xtest_003(self):
vlen = 4
tune = counter3(foobar3, 1)
tune_delay = 1
@@ -193,7 +197,7 @@
#print "foobar4: new_t =", new_t
pass
- def test_004(self):
+ def xtest_004(self):
vlen = 4
tune = counter4(self, 1)
tune_delay = 1
Modified:
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_cma_equalizer.py
===================================================================
---
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_cma_equalizer.py
2007-11-19 18:35:12 UTC (rev 7002)
+++
gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr/qa_cma_equalizer.py
2007-11-19 19:13:23 UTC (rev 7003)
@@ -1,4 +1,24 @@
#!/usr/bin/env python
+#
+# Copyright 2006,2007 Free Software Foundation, Inc.
+#
+# This file is part of GNU Radio
+#
+# GNU Radio is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3, or (at your option)
+# any later version.
+#
+# GNU Radio is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNU Radio; see the file COPYING. If not, write to
+# the Free Software Foundation, Inc., 51 Franklin Street,
+# Boston, MA 02110-1301, USA.
+#
from gnuradio import gr, gr_unittest
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] r7003 - gnuradio/branches/developers/jcorgan/t202/gnuradio-core/src/python/gnuradio/gr,
jcorgan <=