Updating all python QA programs in gnuradio-core to output XML files.
[debian/gnuradio] / gnuradio-core / src / python / gnuradio / gr / qa_head.py
index 3df07a53033714af1cfb70f2245cf4e8c3624c90..aae233b56ed6741dec45f9b76712c249fbf99123 100755 (executable)
@@ -1,12 +1,12 @@
 #!/usr/bin/env python
 #
-# Copyright 2004 Free Software Foundation, Inc.
+# Copyright 2004,2007,2010 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 2, or (at your option)
+# 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,
@@ -25,10 +25,10 @@ from gnuradio import gr, gr_unittest
 class test_head (gr_unittest.TestCase):
 
     def setUp (self):
-        self.fg = gr.flow_graph ()
+        self.tb = gr.top_block ()
 
     def tearDown (self):
-        self.fg = None
+        self.tb = None
 
     def test_head (self):
         src_data = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
@@ -36,12 +36,12 @@ class test_head (gr_unittest.TestCase):
         src1 = gr.vector_source_i (src_data)
         op = gr.head (gr.sizeof_int, 4)
         dst1 = gr.vector_sink_i ()
-        self.fg.connect (src1, op)
-        self.fg.connect (op, dst1)
-        self.fg.run ()
+        self.tb.connect (src1, op)
+        self.tb.connect (op, dst1)
+        self.tb.run ()
         dst_data = dst1.data ()
         self.assertEqual (expected_result, dst_data)
     
 
 if __name__ == '__main__':
-    gr_unittest.main ()
+    gr_unittest.run(test_head, "test_head.xml")