tests: Do not specify filename when runing gr_unittest

This fixes the following warning

DEPRECATED: Using filename with gr_unittest does no longer have any effect.

Change-Id: I7d6dbc32ff794ebf2bc116fa7437062e6780b85f
This commit is contained in:
Vasil Velichkov 2019-09-09 22:38:21 +03:00 committed by Piotr Krysik
parent 0af1435815
commit 0c2845650a
21 changed files with 21 additions and 22 deletions

View File

@ -267,4 +267,4 @@ class qa_arfcn(gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_arfcn, "qa_arfcn.xml")
gr_unittest.run(qa_arfcn)

View File

@ -101,4 +101,4 @@ class qa_burst_file_sink (gr_unittest.TestCase):
list(dst.get_burst_data()))
if __name__ == '__main__':
gr_unittest.run(qa_burst_file_sink, "qa_burst_file_sink.xml")
gr_unittest.run(qa_burst_file_sink)

View File

@ -165,4 +165,4 @@ class qa_burst_fnr_filter (gr_unittest.TestCase):
self.assertEqual(bursts_expected, bursts_result)
if __name__ == '__main__':
gr_unittest.run(qa_burst_fnr_filter, "qa_burst_fnr_filter.xml")
gr_unittest.run(qa_burst_fnr_filter)

View File

@ -294,4 +294,4 @@ class qa_burst_printer (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_burst_printer, "qa_burst_printer.xml")
gr_unittest.run(qa_burst_printer)

View File

@ -208,4 +208,4 @@ class qa_burst_sdcch_subslot_filter (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_burst_sdcch_subslot_filter, "qa_burst_sdcch_subslot_filter.xml")
gr_unittest.run(qa_burst_sdcch_subslot_filter)

View File

@ -398,4 +398,4 @@ class qa_burst_sdcch_subslot_splitter (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_burst_sdcch_subslot_splitter, "qa_burst_sdcch_subslot_splitter.xml")
gr_unittest.run(qa_burst_sdcch_subslot_splitter)

View File

@ -89,4 +89,4 @@ class qa_burst_timeslot_filter (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_burst_timeslot_filter, "qa_burst_timeslot_filter.xml")
gr_unittest.run(qa_burst_timeslot_filter)

View File

@ -158,4 +158,4 @@ class qa_burst_timeslot_splitter (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_burst_timeslot_splitter, "qa_burst_timeslot_splitter.xml")
gr_unittest.run(qa_burst_timeslot_splitter)

View File

@ -40,4 +40,4 @@ class qa_controlled_fractional_resampler_cc (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_controlled_fractional_resampler_cc, "qa_controlled_fractional_resampler_cc.xml")
gr_unittest.run(qa_controlled_fractional_resampler_cc)

View File

@ -199,4 +199,4 @@ class qa_decryption (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_decryption, "qa_decryption.xml")
gr_unittest.run(qa_decryption)

View File

@ -99,4 +99,4 @@ class qa_dummy_burst_filter (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_dummy_burst_filter, "qa_dummy_burst_filter.xml")
gr_unittest.run(qa_dummy_burst_filter)

View File

@ -162,5 +162,4 @@ class qa_message_printer (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_message_printer, "qa_message_printer.xml")
gr_unittest.run(qa_message_printer)

View File

@ -77,4 +77,4 @@ class qa_message_source_sink (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_message_source_sink, "qa_message_source_sink.xml")
gr_unittest.run(qa_message_source_sink)

View File

@ -40,4 +40,4 @@ class qa_msg_to_tag (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_msg_to_tag, "qa_msg_to_tag.xml")
gr_unittest.run(qa_msg_to_tag)

View File

@ -151,4 +151,4 @@ class qa_tch_f_chans_demapper (gr_unittest.TestCase):
self.assertEqual(odd, self.sacch_fr_test(ts=7, frames=[90, 103, 116, 129, 142, 155, 168, 181], bursts=bursts))
if __name__ == '__main__':
gr_unittest.run(qa_tch_f_chans_demapper, "qa_tch_f_chans_demapper.xml")
gr_unittest.run(qa_tch_f_chans_demapper)

View File

@ -105,4 +105,4 @@ class qa_tch_f_decoder (gr_unittest.TestCase):
self.assertEqual(dst.num_messages(), 0)
if __name__ == '__main__':
gr_unittest.run(qa_tch_f_decoder, "qa_tch_f_decoder.xml")
gr_unittest.run(qa_tch_f_decoder)

View File

@ -206,4 +206,4 @@ class qa_tch_h_chans_demapper (gr_unittest.TestCase):
self.assertEqual(odd, self.sacch_hr_test(ts=7, sub=1, frames=[90, 103, 116, 129, 142, 155, 168, 181], bursts=bursts))
if __name__ == '__main__':
gr_unittest.run(qa_tch_h_chans_demapper, "qa_tch_h_chans_demapper.xml")
gr_unittest.run(qa_tch_h_chans_demapper)

View File

@ -187,4 +187,4 @@ class qa_tch_h_decoder (gr_unittest.TestCase):
[]) #Must return an empty array
if __name__ == '__main__':
gr_unittest.run(qa_tch_h_decoder, "qa_tch_h_decoder.xml")
gr_unittest.run(qa_tch_h_decoder)

View File

@ -103,4 +103,4 @@ class qa_txtime_bursts_tagger (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_txtime_bursts_tagger, "qa_txtime_bursts_tagger.xml")
gr_unittest.run(qa_txtime_bursts_tagger)

View File

@ -40,4 +40,4 @@ class qa_txtime_setter (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_txtime_setter, "qa_txtime_setter.xml")
gr_unittest.run(qa_txtime_setter)

View File

@ -40,4 +40,4 @@ class qa_uplink_downlink_splitter (gr_unittest.TestCase):
if __name__ == '__main__':
gr_unittest.run(qa_uplink_downlink_splitter, "qa_uplink_downlink_splitter.xml")
gr_unittest.run(qa_uplink_downlink_splitter)