gnuradio / gnuradio

GNU Radio – the Free and Open Software Radio Ecosystem
https://gnuradio.org
GNU General Public License v3.0
5.01k stars 1.89k forks source link

Can't launch GNU Radio Companion on Manjaro Linux #2995

Closed lusiaold closed 4 years ago

lusiaold commented 4 years ago

Hello, I have a small problem with GNU Radio Companion. I built everything from source using this command:

cmake -DPYTHON_EXECUTABLE=/usr/bin/python2.7 -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_GRC=ON -DENABLE_GR_QTGUI=ON -DENABLE_INTERNAL_VOLK=OFF DENABLE_GR_CTRLPORT=OFF ../

after cloning this repository's maint-3.7 branch. I want version 3.7 because I need gr-noaa blocks. Everything was built correctly, but after running make test I got this output:

98% tests passed, 6 tests failed out of 349

Total Test time (real) = 145.43 sec

The following tests FAILED:
        153 - qa_cpp_py_binding (Failed)
        154 - qa_cpp_py_binding_set (Failed)
        155 - qa_ctrlport_probes (Failed)
        194 - qa_skiphead (Failed)
        202 - qa_tag_share (Failed)
        331 - qa_qtgui (Failed)
Errors while running CTest
make: *** [Makefile:152: test] Error 8

And after running the gnuradio-companion command in the console I got this error message: image

I'm using Manjaro Linux with both Python 3.8 and Python 2.7 installed, and with every needed dependency as well. Should I attach more things to help troubleshoot the problem?

velichkov commented 4 years ago

Hi @PawelPleskaczynski,

98% tests passed, 6 tests failed out of 349

Total Test time (real) = 145.43 sec

The following tests FAILED:
        153 - qa_cpp_py_binding (Failed)
        154 - qa_cpp_py_binding_set (Failed)
        155 - qa_ctrlport_probes (Failed)
        194 - qa_skiphead (Failed)
        202 - qa_tag_share (Failed)
        331 - qa_qtgui (Failed)
Errors while running CTest
make: *** [Makefile:152: test] Error 8

Run ctest --output-on-failure from the build directory and provide the output.

And after running the gnuradio-companion command in the console I got this error message:

You are installing in /usr/ prefix (the -DCMAKE_INSTALL_PREFIX=/usr argument) and not in /usr/local/ so try adding /usr/lib/python2.7/dist-packages to the PYTHONPATH instead.

I'm using Manjaro Linux with both Python 3.8 and Python 2.7 installed, and with every needed dependency as well.

The dist-packages is a Debian/Ubuntu specific thing and Manjaro is based on Arch so most probably gnuradio is installed in site-packages on your system. You could find the location with

$ python2 -c "from distutils import sysconfig; print sysconfig.get_python_lib(plat_specific=True, prefix='')"
$ find /usr -name FlowGraph.py
lusiaold commented 4 years ago

Hi @velichkov, thank you for responding! I tried to launch gnuradio-companion with /usr/lib/python2.7/dist-packages in PYTHONPATH, but I got the same error message. I ran the python2 command you provided and got this output:

lib/python2.7/site-packages

and then I ran the find command:

/usr/lib/python3.8/site-packages/gnuradio/grc/core/FlowGraph.py
/usr/lib/python3.8/site-packages/gnuradio/grc/gui/FlowGraph.py

When I navigated to /lib/python2.7/site-packages I couldn't find gnuradio package, but I could find it in /usr/lib/python2.7/dist-packages, I have no idea what's going on.

Here's output of `ctest` command Test project /home/pawel/gnuradio/build Start 1: qa_volk_16i_32fc_dot_prod_32fc 1/349 Test #1: qa_volk_16i_32fc_dot_prod_32fc ..................... Passed 0.02 sec Start 2: qa_volk_16i_branch_4_state_8 2/349 Test #2: qa_volk_16i_branch_4_state_8 ....................... Passed 0.00 sec Start 3: qa_volk_16i_convert_8i 3/349 Test #3: qa_volk_16i_convert_8i ............................. Passed 0.01 sec Start 4: qa_volk_16i_max_star_16i 4/349 Test #4: qa_volk_16i_max_star_16i ........................... Passed 0.00 sec Start 5: qa_volk_16i_max_star_horizontal_16i 5/349 Test #5: qa_volk_16i_max_star_horizontal_16i ................ Passed 0.01 sec Start 6: qa_volk_16i_permute_and_scalar_add 6/349 Test #6: qa_volk_16i_permute_and_scalar_add ................. Passed 0.01 sec Start 7: qa_volk_16i_s32f_convert_32f 7/349 Test #7: qa_volk_16i_s32f_convert_32f ....................... Passed 0.01 sec Start 8: qa_volk_16i_x4_quad_max_star_16i 8/349 Test #8: qa_volk_16i_x4_quad_max_star_16i ................... Passed 0.01 sec Start 9: qa_volk_16i_x5_add_quad_16i_x4 9/349 Test #9: qa_volk_16i_x5_add_quad_16i_x4 ..................... Passed 0.01 sec Start 10: qa_volk_16ic_convert_32fc 10/349 Test #10: qa_volk_16ic_convert_32fc .......................... Passed 0.02 sec Start 11: qa_volk_16ic_deinterleave_16i_x2 11/349 Test #11: qa_volk_16ic_deinterleave_16i_x2 ................... Passed 0.01 sec Start 12: qa_volk_16ic_deinterleave_real_16i 12/349 Test #12: qa_volk_16ic_deinterleave_real_16i ................. Passed 0.01 sec Start 13: qa_volk_16ic_deinterleave_real_8i 13/349 Test #13: qa_volk_16ic_deinterleave_real_8i .................. Passed 0.01 sec Start 14: qa_volk_16ic_magnitude_16i 14/349 Test #14: qa_volk_16ic_magnitude_16i ......................... Passed 0.01 sec Start 15: qa_volk_16ic_s32f_deinterleave_32f_x2 15/349 Test #15: qa_volk_16ic_s32f_deinterleave_32f_x2 .............. Passed 0.02 sec Start 16: qa_volk_16ic_s32f_deinterleave_real_32f 16/349 Test #16: qa_volk_16ic_s32f_deinterleave_real_32f ............ Passed 0.01 sec Start 17: qa_volk_16ic_s32f_magnitude_32f 17/349 Test #17: qa_volk_16ic_s32f_magnitude_32f .................... Passed 0.01 sec Start 18: qa_volk_16ic_x2_dot_prod_16ic 18/349 Test #18: qa_volk_16ic_x2_dot_prod_16ic ...................... Passed 0.02 sec Start 19: qa_volk_16ic_x2_multiply_16ic 19/349 Test #19: qa_volk_16ic_x2_multiply_16ic ...................... Passed 0.02 sec Start 20: qa_volk_16u_byteswap 20/349 Test #20: qa_volk_16u_byteswap ............................... Passed 0.01 sec Start 21: qa_volk_16u_byteswappuppet_16u 21/349 Test #21: qa_volk_16u_byteswappuppet_16u ..................... Passed 0.01 sec Start 22: qa_volk_32f_64f_add_64f 22/349 Test #22: qa_volk_32f_64f_add_64f ............................ Passed 0.02 sec Start 23: qa_volk_32f_64f_multiply_64f 23/349 Test #23: qa_volk_32f_64f_multiply_64f ....................... Passed 0.01 sec Start 24: qa_volk_32f_8u_polarbutterfly_32f 24/349 Test #24: qa_volk_32f_8u_polarbutterfly_32f .................. Passed 0.01 sec Start 25: qa_volk_32f_8u_polarbutterflypuppet_32f 25/349 Test #25: qa_volk_32f_8u_polarbutterflypuppet_32f ............ Passed 0.02 sec Start 26: qa_volk_32f_accumulator_s32f 26/349 Test #26: qa_volk_32f_accumulator_s32f ....................... Passed 0.01 sec Start 27: qa_volk_32f_acos_32f 27/349 Test #27: qa_volk_32f_acos_32f ............................... Passed 0.01 sec Start 28: qa_volk_32f_asin_32f 28/349 Test #28: qa_volk_32f_asin_32f ............................... Passed 0.01 sec Start 29: qa_volk_32f_atan_32f 29/349 Test #29: qa_volk_32f_atan_32f ............................... Passed 0.01 sec Start 30: qa_volk_32f_binary_slicer_32i 30/349 Test #30: qa_volk_32f_binary_slicer_32i ...................... Passed 0.01 sec Start 31: qa_volk_32f_binary_slicer_8i 31/349 Test #31: qa_volk_32f_binary_slicer_8i ....................... Passed 0.01 sec Start 32: qa_volk_32f_convert_64f 32/349 Test #32: qa_volk_32f_convert_64f ............................ Passed 0.01 sec Start 33: qa_volk_32f_cos_32f 33/349 Test #33: qa_volk_32f_cos_32f ................................ Passed 0.02 sec Start 34: qa_volk_32f_expfast_32f 34/349 Test #34: qa_volk_32f_expfast_32f ............................ Passed 0.01 sec Start 35: qa_volk_32f_index_max_16u 35/349 Test #35: qa_volk_32f_index_max_16u .......................... Passed 0.01 sec Start 36: qa_volk_32f_index_max_32u 36/349 Test #36: qa_volk_32f_index_max_32u .......................... Passed 0.01 sec Start 37: qa_volk_32f_invsqrt_32f 37/349 Test #37: qa_volk_32f_invsqrt_32f ............................ Passed 0.01 sec Start 38: qa_volk_32f_log2_32f 38/349 Test #38: qa_volk_32f_log2_32f ............................... Passed 0.01 sec Start 39: qa_volk_32f_null_32f 39/349 Test #39: qa_volk_32f_null_32f ............................... Passed 0.01 sec Start 40: qa_volk_32f_s32f_32f_fm_detect_32f 40/349 Test #40: qa_volk_32f_s32f_32f_fm_detect_32f ................. Passed 0.01 sec Start 41: qa_volk_32f_s32f_calc_spectral_noise_floor_32f 41/349 Test #41: qa_volk_32f_s32f_calc_spectral_noise_floor_32f ..... Passed 0.01 sec Start 42: qa_volk_32f_s32f_convert_16i 42/349 Test #42: qa_volk_32f_s32f_convert_16i ....................... Passed 0.02 sec Start 43: qa_volk_32f_s32f_convert_32i 43/349 Test #43: qa_volk_32f_s32f_convert_32i ....................... Passed 0.02 sec Start 44: qa_volk_32f_s32f_convert_8i 44/349 Test #44: qa_volk_32f_s32f_convert_8i ........................ Passed 0.01 sec Start 45: qa_volk_32f_s32f_mod_rangepuppet_32f 45/349 Test #45: qa_volk_32f_s32f_mod_rangepuppet_32f ............... Passed 0.02 sec Start 46: qa_volk_32f_s32f_multiply_32f 46/349 Test #46: qa_volk_32f_s32f_multiply_32f ...................... Passed 0.02 sec Start 47: qa_volk_32f_s32f_normalize 47/349 Test #47: qa_volk_32f_s32f_normalize ......................... Passed 0.01 sec Start 48: qa_volk_32f_s32f_power_32f 48/349 Test #48: qa_volk_32f_s32f_power_32f ......................... Passed 0.04 sec Start 49: qa_volk_32f_s32f_s32f_mod_range_32f 49/349 Test #49: qa_volk_32f_s32f_s32f_mod_range_32f ................ Passed 0.01 sec Start 50: qa_volk_32f_s32f_stddev_32f 50/349 Test #50: qa_volk_32f_s32f_stddev_32f ........................ Passed 0.01 sec Start 51: qa_volk_32f_sin_32f 51/349 Test #51: qa_volk_32f_sin_32f ................................ Passed 0.01 sec Start 52: qa_volk_32f_sqrt_32f 52/349 Test #52: qa_volk_32f_sqrt_32f ............................... Passed 0.01 sec Start 53: qa_volk_32f_stddev_and_mean_32f_x2 53/349 Test #53: qa_volk_32f_stddev_and_mean_32f_x2 ................. Passed 0.02 sec Start 54: qa_volk_32f_tan_32f 54/349 Test #54: qa_volk_32f_tan_32f ................................ Passed 0.01 sec Start 55: qa_volk_32f_tanh_32f 55/349 Test #55: qa_volk_32f_tanh_32f ............................... Passed 0.02 sec Start 56: qa_volk_32f_x2_add_32f 56/349 Test #56: qa_volk_32f_x2_add_32f ............................. Passed 0.02 sec Start 57: qa_volk_32f_x2_divide_32f 57/349 Test #57: qa_volk_32f_x2_divide_32f .......................... Passed 0.02 sec Start 58: qa_volk_32f_x2_dot_prod_16i 58/349 Test #58: qa_volk_32f_x2_dot_prod_16i ........................ Passed 0.01 sec Start 59: qa_volk_32f_x2_dot_prod_32f 59/349 Test #59: qa_volk_32f_x2_dot_prod_32f ........................ Passed 0.02 sec Start 60: qa_volk_32f_x2_fm_detectpuppet_32f 60/349 Test #60: qa_volk_32f_x2_fm_detectpuppet_32f ................. Passed 0.01 sec Start 61: qa_volk_32f_x2_interleave_32fc 61/349 Test #61: qa_volk_32f_x2_interleave_32fc ..................... Passed 0.02 sec Start 62: qa_volk_32f_x2_max_32f 62/349 Test #62: qa_volk_32f_x2_max_32f ............................. Passed 0.02 sec Start 63: qa_volk_32f_x2_min_32f 63/349 Test #63: qa_volk_32f_x2_min_32f ............................. Passed 0.01 sec Start 64: qa_volk_32f_x2_multiply_32f 64/349 Test #64: qa_volk_32f_x2_multiply_32f ........................ Passed 0.02 sec Start 65: qa_volk_32f_x2_pow_32f 65/349 Test #65: qa_volk_32f_x2_pow_32f ............................. Passed 0.02 sec Start 66: qa_volk_32f_x2_s32f_interleave_16ic 66/349 Test #66: qa_volk_32f_x2_s32f_interleave_16ic ................ Passed 0.02 sec Start 67: qa_volk_32f_x2_subtract_32f 67/349 Test #67: qa_volk_32f_x2_subtract_32f ........................ Passed 0.02 sec Start 68: qa_volk_32f_x3_sum_of_poly_32f 68/349 Test #68: qa_volk_32f_x3_sum_of_poly_32f ..................... Passed 0.02 sec Start 69: qa_volk_32fc_32f_add_32fc 69/349 Test #69: qa_volk_32fc_32f_add_32fc .......................... Passed 0.02 sec Start 70: qa_volk_32fc_32f_dot_prod_32fc 70/349 Test #70: qa_volk_32fc_32f_dot_prod_32fc ..................... Passed 0.03 sec Start 71: qa_volk_32fc_32f_multiply_32fc 71/349 Test #71: qa_volk_32fc_32f_multiply_32fc ..................... Passed 0.02 sec Start 72: qa_volk_32fc_conjugate_32fc 72/349 Test #72: qa_volk_32fc_conjugate_32fc ........................ Passed 0.03 sec Start 73: qa_volk_32fc_convert_16ic 73/349 Test #73: qa_volk_32fc_convert_16ic .......................... Passed 0.01 sec Start 74: qa_volk_32fc_deinterleave_32f_x2 74/349 Test #74: qa_volk_32fc_deinterleave_32f_x2 ................... Passed 0.02 sec Start 75: qa_volk_32fc_deinterleave_64f_x2 75/349 Test #75: qa_volk_32fc_deinterleave_64f_x2 ................... Passed 0.03 sec Start 76: qa_volk_32fc_deinterleave_imag_32f 76/349 Test #76: qa_volk_32fc_deinterleave_imag_32f ................. Passed 0.01 sec Start 77: qa_volk_32fc_deinterleave_real_32f 77/349 Test #77: qa_volk_32fc_deinterleave_real_32f ................. Passed 0.01 sec Start 78: qa_volk_32fc_deinterleave_real_64f 78/349 Test #78: qa_volk_32fc_deinterleave_real_64f ................. Passed 0.01 sec Start 79: qa_volk_32fc_index_max_16u 79/349 Test #79: qa_volk_32fc_index_max_16u ......................... Passed 0.01 sec Start 80: qa_volk_32fc_index_max_32u 80/349 Test #80: qa_volk_32fc_index_max_32u ......................... Passed 0.01 sec Start 81: qa_volk_32fc_magnitude_32f 81/349 Test #81: qa_volk_32fc_magnitude_32f ......................... Passed 0.03 sec Start 82: qa_volk_32fc_magnitude_squared_32f 82/349 Test #82: qa_volk_32fc_magnitude_squared_32f ................. Passed 0.03 sec Start 83: qa_volk_32fc_s32f_atan2_32f 83/349 Test #83: qa_volk_32fc_s32f_atan2_32f ........................ Passed 0.03 sec Start 84: qa_volk_32fc_s32f_deinterleave_real_16i 84/349 Test #84: qa_volk_32fc_s32f_deinterleave_real_16i ............ Passed 0.01 sec Start 85: qa_volk_32fc_s32f_magnitude_16i 85/349 Test #85: qa_volk_32fc_s32f_magnitude_16i .................... Passed 0.02 sec Start 86: qa_volk_32fc_s32f_power_32fc 86/349 Test #86: qa_volk_32fc_s32f_power_32fc ....................... Passed 0.04 sec Start 87: qa_volk_32fc_s32f_power_spectrum_32f 87/349 Test #87: qa_volk_32fc_s32f_power_spectrum_32f ............... Passed 0.02 sec Start 88: qa_volk_32fc_s32f_x2_power_spectral_density_32f 88/349 Test #88: qa_volk_32fc_s32f_x2_power_spectral_density_32f .... Passed 0.01 sec Start 89: qa_volk_32fc_s32fc_multiply_32fc 89/349 Test #89: qa_volk_32fc_s32fc_multiply_32fc ................... Passed 0.02 sec Start 90: qa_volk_32fc_s32fc_rotatorpuppet_32fc 90/349 Test #90: qa_volk_32fc_s32fc_rotatorpuppet_32fc .............. Passed 0.02 sec Start 91: qa_volk_32fc_s32fc_x2_rotator_32fc 91/349 Test #91: qa_volk_32fc_s32fc_x2_rotator_32fc ................. Passed 0.01 sec Start 92: qa_volk_32fc_x2_add_32fc 92/349 Test #92: qa_volk_32fc_x2_add_32fc ........................... Passed 0.03 sec Start 93: qa_volk_32fc_x2_conjugate_dot_prod_32fc 93/349 Test #93: qa_volk_32fc_x2_conjugate_dot_prod_32fc ............ Passed 0.03 sec Start 94: qa_volk_32fc_x2_divide_32fc 94/349 Test #94: qa_volk_32fc_x2_divide_32fc ........................ Passed 0.03 sec Start 95: qa_volk_32fc_x2_dot_prod_32fc 95/349 Test #95: qa_volk_32fc_x2_dot_prod_32fc ...................... Passed 0.05 sec Start 96: qa_volk_32fc_x2_multiply_32fc 96/349 Test #96: qa_volk_32fc_x2_multiply_32fc ...................... Passed 0.03 sec Start 97: qa_volk_32fc_x2_multiply_conjugate_32fc 97/349 Test #97: qa_volk_32fc_x2_multiply_conjugate_32fc ............ Passed 0.02 sec Start 98: qa_volk_32fc_x2_s32f_square_dist_scalar_mult_32f 98/349 Test #98: qa_volk_32fc_x2_s32f_square_dist_scalar_mult_32f ... Passed 0.02 sec Start 99: qa_volk_32fc_x2_square_dist_32f 99/349 Test #99: qa_volk_32fc_x2_square_dist_32f .................... Passed 0.01 sec Start 100: qa_volk_32i_s32f_convert_32f 100/349 Test #100: qa_volk_32i_s32f_convert_32f ....................... Passed 0.01 sec Start 101: qa_volk_32i_x2_and_32i 101/349 Test #101: qa_volk_32i_x2_and_32i ............................. Passed 0.02 sec Start 102: qa_volk_32i_x2_or_32i 102/349 Test #102: qa_volk_32i_x2_or_32i .............................. Passed 0.01 sec Start 103: qa_volk_32u_byteswap 103/349 Test #103: qa_volk_32u_byteswap ............................... Passed 0.01 sec Start 104: qa_volk_32u_byteswappuppet_32u 104/349 Test #104: qa_volk_32u_byteswappuppet_32u ..................... Passed 0.01 sec Start 105: qa_volk_32u_popcnt 105/349 Test #105: qa_volk_32u_popcnt ................................. Passed 0.01 sec Start 106: qa_volk_32u_popcntpuppet_32u 106/349 Test #106: qa_volk_32u_popcntpuppet_32u ....................... Passed 0.01 sec Start 107: qa_volk_32u_reverse_32u 107/349 Test #107: qa_volk_32u_reverse_32u ............................ Passed 0.02 sec Start 108: qa_volk_64f_convert_32f 108/349 Test #108: qa_volk_64f_convert_32f ............................ Passed 0.02 sec Start 109: qa_volk_64f_x2_add_64f 109/349 Test #109: qa_volk_64f_x2_add_64f ............................. Passed 0.02 sec Start 110: qa_volk_64f_x2_max_64f 110/349 Test #110: qa_volk_64f_x2_max_64f ............................. Passed 0.02 sec Start 111: qa_volk_64f_x2_min_64f 111/349 Test #111: qa_volk_64f_x2_min_64f ............................. Passed 0.02 sec Start 112: qa_volk_64f_x2_multiply_64f 112/349 Test #112: qa_volk_64f_x2_multiply_64f ........................ Passed 0.02 sec Start 113: qa_volk_64u_byteswap 113/349 Test #113: qa_volk_64u_byteswap ............................... Passed 0.01 sec Start 114: qa_volk_64u_byteswappuppet_64u 114/349 Test #114: qa_volk_64u_byteswappuppet_64u ..................... Passed 0.02 sec Start 115: qa_volk_64u_popcnt 115/349 Test #115: qa_volk_64u_popcnt ................................. Passed 0.01 sec Start 116: qa_volk_64u_popcntpuppet_64u 116/349 Test #116: qa_volk_64u_popcntpuppet_64u ....................... Passed 0.01 sec Start 117: qa_volk_8i_convert_16i 117/349 Test #117: qa_volk_8i_convert_16i ............................. Passed 0.01 sec Start 118: qa_volk_8i_s32f_convert_32f 118/349 Test #118: qa_volk_8i_s32f_convert_32f ........................ Passed 0.02 sec Start 119: qa_volk_8ic_deinterleave_16i_x2 119/349 Test #119: qa_volk_8ic_deinterleave_16i_x2 .................... Passed 0.01 sec Start 120: qa_volk_8ic_deinterleave_real_16i 120/349 Test #120: qa_volk_8ic_deinterleave_real_16i .................. Passed 0.01 sec Start 121: qa_volk_8ic_deinterleave_real_8i 121/349 Test #121: qa_volk_8ic_deinterleave_real_8i ................... Passed 0.01 sec Start 122: qa_volk_8ic_s32f_deinterleave_32f_x2 122/349 Test #122: qa_volk_8ic_s32f_deinterleave_32f_x2 ............... Passed 0.01 sec Start 123: qa_volk_8ic_s32f_deinterleave_real_32f 123/349 Test #123: qa_volk_8ic_s32f_deinterleave_real_32f ............. Passed 0.01 sec Start 124: qa_volk_8ic_x2_multiply_conjugate_16ic 124/349 Test #124: qa_volk_8ic_x2_multiply_conjugate_16ic ............. Passed 0.01 sec Start 125: qa_volk_8ic_x2_s32f_multiply_conjugate_32fc 125/349 Test #125: qa_volk_8ic_x2_s32f_multiply_conjugate_32fc ........ Passed 0.02 sec Start 126: qa_volk_8u_conv_k7_r2puppet_8u 126/349 Test #126: qa_volk_8u_conv_k7_r2puppet_8u ..................... Passed 0.01 sec Start 127: qa_volk_8u_x2_encodeframepolar_8u 127/349 Test #127: qa_volk_8u_x2_encodeframepolar_8u .................. Passed 0.01 sec Start 128: qa_volk_8u_x3_encodepolar_8u_x2 128/349 Test #128: qa_volk_8u_x3_encodepolar_8u_x2 .................... Passed 0.01 sec Start 129: qa_volk_8u_x3_encodepolarpuppet_8u 129/349 Test #129: qa_volk_8u_x3_encodepolarpuppet_8u ................. Passed 0.02 sec Start 130: qa_volk_8u_x4_conv_k7_r2_8u 130/349 Test #130: qa_volk_8u_x4_conv_k7_r2_8u ........................ Passed 0.01 sec Start 131: gr-runtime-test 131/349 Test #131: gr-runtime-test .................................... Passed 1.46 sec Start 132: gr-pmt-test 132/349 Test #132: gr-pmt-test ........................................ Passed 0.41 sec Start 133: qa_feval 133/349 Test #133: qa_feval ........................................... Passed 0.17 sec Start 134: qa_flowgraph 134/349 Test #134: qa_flowgraph ....................................... Passed 0.64 sec Start 135: qa_hier_block2 135/349 Test #135: qa_hier_block2 ..................................... Passed 4.32 sec Start 136: qa_kludged_imports 136/349 Test #136: qa_kludged_imports ................................. Passed 0.19 sec Start 137: qa_random 137/349 Test #137: qa_random .......................................... Passed 0.26 sec Start 138: qa_tag_utils 138/349 Test #138: qa_tag_utils ....................................... Passed 0.19 sec Start 139: qa_pmt 139/349 Test #139: qa_pmt ............................................. Passed 0.16 sec Start 140: qa_pmt_to_python 140/349 Test #140: qa_pmt_to_python ................................... Passed 0.17 sec Start 141: test_gr_blocks 141/349 Test #141: test_gr_blocks ..................................... Passed 0.57 sec Start 142: qa_add_mult_div_sub 142/349 Test #142: qa_add_mult_div_sub ................................ Passed 0.33 sec Start 143: qa_add_mult_v 143/349 Test #143: qa_add_mult_v ...................................... Passed 0.42 sec Start 144: qa_affinity 144/349 Test #144: qa_affinity ........................................ Passed 0.26 sec Start 145: qa_argmax 145/349 Test #145: qa_argmax .......................................... Passed 0.25 sec Start 146: qa_bin_statistics 146/349 Test #146: qa_bin_statistics .................................. Passed 0.26 sec Start 147: qa_block_behavior 147/349 Test #147: qa_block_behavior .................................. Passed 0.27 sec Start 148: qa_block_gateway 148/349 Test #148: qa_block_gateway ................................... Passed 0.39 sec Start 149: qa_boolean_operators 149/349 Test #149: qa_boolean_operators ............................... Passed 0.30 sec Start 150: qa_burst_tagger 150/349 Test #150: qa_burst_tagger .................................... Passed 0.24 sec Start 151: qa_conjugate 151/349 Test #151: qa_conjugate ....................................... Passed 0.24 sec Start 152: qa_copy 152/349 Test #152: qa_copy ............................................ Passed 0.24 sec Start 153: qa_cpp_py_binding 153/349 Test #153: qa_cpp_py_binding ..................................***Failed 0.22 sec Traceback (most recent call last): File "/home/pawel/gnuradio/gr-blocks/python/blocks/qa_cpp_py_binding.py", line 30, in from gnuradio.ctrlport import GNURadio ImportError: No module named ctrlport Start 154: qa_cpp_py_binding_set 154/349 Test #154: qa_cpp_py_binding_set ..............................***Failed 0.22 sec Traceback (most recent call last): File "/home/pawel/gnuradio/gr-blocks/python/blocks/qa_cpp_py_binding_set.py", line 30, in from gnuradio.ctrlport import GNURadio ImportError: No module named ctrlport Start 155: qa_ctrlport_probes 155/349 Test #155: qa_ctrlport_probes .................................***Failed 0.24 sec Traceback (most recent call last): File "/home/pawel/gnuradio/gr-blocks/python/blocks/qa_ctrlport_probes.py", line 27, in from gnuradio.ctrlport.GNURadioControlPortClient import GNURadioControlPortClient ImportError: No module named ctrlport.GNURadioControlPortClient Start 156: qa_delay 156/349 Test #156: qa_delay ........................................... Passed 0.26 sec Start 157: qa_endian_swap 157/349 Test #157: qa_endian_swap ..................................... Passed 0.24 sec Start 158: qa_exponentiate_const_cci 158/349 Test #158: qa_exponentiate_const_cci .......................... Passed 0.48 sec Start 159: qa_file_metadata 159/349 Test #159: qa_file_metadata ................................... Passed 0.24 sec Start 160: qa_file_source_sink 160/349 Test #160: qa_file_source_sink ................................ Passed 0.25 sec Start 161: qa_head 161/349 Test #161: qa_head ............................................ Passed 0.22 sec Start 162: qa_hier_block2 162/349 Test #162: qa_hier_block2 ..................................... Passed 3.29 sec Start 163: qa_hier_block2_message_connections 163/349 Test #163: qa_hier_block2_message_connections ................. Passed 0.26 sec Start 164: qa_integrate 164/349 Test #164: qa_integrate ....................................... Passed 0.26 sec Start 165: qa_interleave 165/349 Test #165: qa_interleave ...................................... Passed 0.24 sec Start 166: qa_keep_m_in_n 166/349 Test #166: qa_keep_m_in_n ..................................... Passed 0.25 sec Start 167: qa_keep_one_in_n 167/349 Test #167: qa_keep_one_in_n ................................... Passed 0.25 sec Start 168: qa_max 168/349 Test #168: qa_max ............................................. Passed 0.23 sec Start 169: qa_message 169/349 Test #169: qa_message ......................................... Passed 2.26 sec Start 170: qa_message_tags 170/349 Test #170: qa_message_tags .................................... Passed 2.23 sec Start 171: qa_min 171/349 Test #171: qa_min ............................................. Passed 0.25 sec Start 172: qa_moving_average 172/349 Test #172: qa_moving_average .................................. Passed 0.37 sec Start 173: qa_multiply_conjugate 173/349 Test #173: qa_multiply_conjugate .............................. Passed 0.22 sec Start 174: qa_multiply_matrix_xx 174/349 Test #174: qa_multiply_matrix_xx .............................. Passed 0.23 sec Start 175: qa_mute 175/349 Test #175: qa_mute ............................................ Passed 0.25 sec Start 176: qa_nlog10 176/349 Test #176: qa_nlog10 .......................................... Passed 0.22 sec Start 177: qa_null_sink_source 177/349 Test #177: qa_null_sink_source ................................ Passed 0.25 sec Start 178: qa_pack_k_bits 178/349 Test #178: qa_pack_k_bits ..................................... Passed 0.27 sec Start 179: qa_packed_to_unpacked 179/349 Test #179: qa_packed_to_unpacked .............................. Passed 0.32 sec Start 180: qa_patterned_interleaver 180/349 Test #180: qa_patterned_interleaver ........................... Passed 0.24 sec Start 181: qa_pdu 181/349 Test #181: qa_pdu ............................................. Passed 1.06 sec Start 182: qa_peak_detector 182/349 Test #182: qa_peak_detector ................................... Passed 0.25 sec Start 183: qa_peak_detector2 183/349 Test #183: qa_peak_detector2 .................................. Passed 0.24 sec Start 184: qa_pipe_fittings 184/349 Test #184: qa_pipe_fittings ................................... Passed 0.25 sec Start 185: qa_plateau_detector_fb 185/349 Test #185: qa_plateau_detector_fb ............................. Passed 0.24 sec Start 186: qa_probe_signal 186/349 Test #186: qa_probe_signal .................................... Passed 0.25 sec Start 187: qa_python_message_passing 187/349 Test #187: qa_python_message_passing .......................... Passed 1.25 sec Start 188: qa_regenerate 188/349 Test #188: qa_regenerate ...................................... Passed 0.24 sec Start 189: qa_repack_bits_bb 189/349 Test #189: qa_repack_bits_bb .................................. Passed 0.30 sec Start 190: qa_repeat 190/349 Test #190: qa_repeat .......................................... Passed 0.22 sec Start 191: qa_rms 191/349 Test #191: qa_rms ............................................. Passed 0.34 sec Start 192: qa_sample_and_hold 192/349 Test #192: qa_sample_and_hold ................................. Passed 0.23 sec Start 193: qa_selector 193/349 Test #193: qa_selector ........................................ Passed 0.24 sec Start 194: qa_skiphead 194/349 Test #194: qa_skiphead ........................................***Failed 0.54 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_skiphead_test.sh: line 9: 13735 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_skiphead.py Start 195: qa_socket_pdu 195/349 Test #195: qa_socket_pdu ...................................... Passed 4.80 sec Start 196: qa_stream_mux 196/349 Test #196: qa_stream_mux ...................................... Passed 0.28 sec Start 197: qa_stream_to_tagged_stream 197/349 Test #197: qa_stream_to_tagged_stream ......................... Passed 0.22 sec Start 198: qa_stretch 198/349 Test #198: qa_stretch ......................................... Passed 0.23 sec Start 199: qa_tag_debug 199/349 Test #199: qa_tag_debug ....................................... Passed 0.24 sec Start 200: qa_tag_file_sink 200/349 Test #200: qa_tag_file_sink ................................... Passed 0.26 sec Start 201: qa_tag_gate 201/349 Test #201: qa_tag_gate ........................................ Passed 0.23 sec Start 202: qa_tag_share 202/349 Test #202: qa_tag_share .......................................***Failed 0.49 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_tag_share_test.sh: line 9: 14064 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_tag_share.py Start 203: qa_tagged_stream_mux 203/349 Test #203: qa_tagged_stream_mux ............................... Passed 0.24 sec Start 204: qa_tags_strobe 204/349 Test #204: qa_tags_strobe ..................................... Passed 0.23 sec Start 205: qa_tcp_server_sink 205/349 Test #205: qa_tcp_server_sink ................................. Passed 0.28 sec Start 206: qa_threshold 206/349 Test #206: qa_threshold ....................................... Passed 0.23 sec Start 207: qa_throttle 207/349 Test #207: qa_throttle ........................................ Passed 0.24 sec Start 208: qa_transcendental 208/349 Test #208: qa_transcendental .................................. Passed 0.24 sec Start 209: qa_tsb_vector_sink_X 209/349 Test #209: qa_tsb_vector_sink_X ............................... Passed 0.25 sec Start 210: qa_type_conversions 210/349 Test #210: qa_type_conversions ................................ Passed 0.31 sec Start 211: qa_udp_source_sink 211/349 Test #211: qa_udp_source_sink ................................. Passed 8.26 sec Start 212: qa_unpack_k_bits 212/349 Test #212: qa_unpack_k_bits ................................... Passed 0.24 sec Start 213: qa_vco 213/349 Test #213: qa_vco ............................................. Passed 0.25 sec Start 214: qa_vector_insert 214/349 Test #214: qa_vector_insert ................................... Passed 0.68 sec Start 215: qa_vector_map 215/349 Test #215: qa_vector_map ...................................... Passed 0.26 sec Start 216: qa_vector_sink_source 216/349 Test #216: qa_vector_sink_source .............................. Passed 0.27 sec Start 217: qa_wavfile 217/349 Test #217: qa_wavfile ......................................... Passed 0.23 sec Start 218: gr-fec-reed-solomon-test 218/349 Test #218: gr-fec-reed-solomon-test ........................... Passed 0.01 sec Start 219: qa_ber_bf 219/349 Test #219: qa_ber_bf .......................................... Passed 0.30 sec Start 220: qa_depuncture 220/349 Test #220: qa_depuncture ...................................... Passed 0.94 sec Start 221: qa_ecc_ccsds_27 221/349 Test #221: qa_ecc_ccsds_27 .................................... Passed 0.25 sec Start 222: qa_fecapi_cc 222/349 Test #222: qa_fecapi_cc ....................................... Passed 0.70 sec Start 223: qa_fecapi_dummy 223/349 Test #223: qa_fecapi_dummy .................................... Passed 0.88 sec Start 224: qa_fecapi_ldpc 224/349 Test #224: qa_fecapi_ldpc ..................................... Passed 2.23 sec Start 225: qa_fecapi_repetition 225/349 Test #225: qa_fecapi_repetition ............................... Passed 1.52 sec Start 226: qa_polar_decoder_sc 226/349 Test #226: qa_polar_decoder_sc ................................ Passed 0.52 sec Start 227: qa_polar_decoder_sc_list 227/349 Test #227: qa_polar_decoder_sc_list ........................... Passed 0.46 sec Start 228: qa_polar_decoder_sc_systematic 228/349 Test #228: qa_polar_decoder_sc_systematic ..................... Passed 0.37 sec Start 229: qa_polar_encoder 229/349 Test #229: qa_polar_encoder ................................... Passed 0.51 sec Start 230: qa_polar_encoder_systematic 230/349 Test #230: qa_polar_encoder_systematic ........................ Passed 0.37 sec Start 231: qa_puncture 231/349 Test #231: qa_puncture ........................................ Passed 1.65 sec Start 232: qa_fft 232/349 Test #232: qa_fft ............................................. Passed 0.26 sec Start 233: qa_goertzel 233/349 Test #233: qa_goertzel ........................................ Passed 0.26 sec Start 234: test_gr_filter 234/349 Test #234: test_gr_filter ..................................... Passed 0.36 sec Start 235: qa_dc_blocker 235/349 Test #235: qa_dc_blocker ...................................... Passed 0.28 sec Start 236: qa_fft_filter 236/349 Test #236: qa_fft_filter ...................................... Passed 3.77 sec Start 237: qa_filter_delay_fc 237/349 Test #237: qa_filter_delay_fc ................................. Passed 0.27 sec Start 238: qa_filterbank 238/349 Test #238: qa_filterbank ...................................... Passed 0.25 sec Start 239: qa_fir_filter 239/349 Test #239: qa_fir_filter ...................................... Passed 0.31 sec Start 240: qa_firdes 240/349 Test #240: qa_firdes .......................................... Passed 0.25 sec Start 241: qa_fractional_interpolator 241/349 Test #241: qa_fractional_interpolator ......................... Passed 0.34 sec Start 242: qa_fractional_resampler 242/349 Test #242: qa_fractional_resampler ............................ Passed 0.41 sec Start 243: qa_freq_xlating_fft_filter 243/349 Test #243: qa_freq_xlating_fft_filter ......................... Passed 0.39 sec Start 244: qa_freq_xlating_fir_filter 244/349 Test #244: qa_freq_xlating_fir_filter ......................... Passed 0.31 sec Start 245: qa_hilbert 245/349 Test #245: qa_hilbert ......................................... Passed 0.28 sec Start 246: qa_iir_filter 246/349 Test #246: qa_iir_filter ...................................... Passed 0.32 sec Start 247: qa_interp_fir_filter 247/349 Test #247: qa_interp_fir_filter ............................... Passed 0.25 sec Start 248: qa_pfb_arb_resampler 248/349 Test #248: qa_pfb_arb_resampler ............................... Passed 0.66 sec Start 249: qa_pfb_channelizer 249/349 Test #249: qa_pfb_channelizer ................................. Passed 0.79 sec Start 250: qa_pfb_decimator 250/349 Test #250: qa_pfb_decimator ................................... Passed 1.23 sec Start 251: qa_pfb_interpolator 251/349 Test #251: qa_pfb_interpolator ................................ Passed 0.32 sec Start 252: qa_pfb_synthesizer 252/349 Test #252: qa_pfb_synthesizer ................................. Passed 0.65 sec Start 253: qa_pm_remez 253/349 Test #253: qa_pm_remez ........................................ Passed 0.29 sec Start 254: qa_rational_resampler 254/349 Test #254: qa_rational_resampler .............................. Passed 0.31 sec Start 255: qa_single_pole_iir 255/349 Test #255: qa_single_pole_iir ................................. Passed 0.30 sec Start 256: test_gr_analog 256/349 Test #256: test_gr_analog ..................................... Passed 0.02 sec Start 257: qa_agc 257/349 Test #257: qa_agc ............................................. Passed 0.30 sec Start 258: qa_cpfsk 258/349 Test #258: qa_cpfsk ........................................... Passed 0.28 sec Start 259: qa_ctcss_squelch 259/349 Test #259: qa_ctcss_squelch ................................... Passed 0.27 sec Start 260: qa_dpll 260/349 Test #260: qa_dpll ............................................ Passed 0.26 sec Start 261: qa_fastnoise 261/349 Test #261: qa_fastnoise ....................................... Passed 9.71 sec Start 262: qa_fmdet 262/349 Test #262: qa_fmdet ........................................... Passed 0.27 sec Start 263: qa_frequency_modulator 263/349 Test #263: qa_frequency_modulator ............................. Passed 0.25 sec Start 264: qa_noise 264/349 Test #264: qa_noise ........................................... Passed 0.26 sec Start 265: qa_phase_modulator 265/349 Test #265: qa_phase_modulator ................................. Passed 0.25 sec Start 266: qa_pll_carriertracking 266/349 Test #266: qa_pll_carriertracking ............................. Passed 0.25 sec Start 267: qa_pll_freqdet 267/349 Test #267: qa_pll_freqdet ..................................... Passed 0.27 sec Start 268: qa_pll_refout 268/349 Test #268: qa_pll_refout ...................................... Passed 0.26 sec Start 269: qa_probe_avg_mag_sqrd 269/349 Test #269: qa_probe_avg_mag_sqrd .............................. Passed 0.27 sec Start 270: qa_pwr_squelch 270/349 Test #270: qa_pwr_squelch ..................................... Passed 0.29 sec Start 271: qa_quadrature_demod 271/349 Test #271: qa_quadrature_demod ................................ Passed 0.30 sec Start 272: qa_rail_ff 272/349 Test #272: qa_rail_ff ......................................... Passed 0.27 sec Start 273: qa_random_uniform_source 273/349 Test #273: qa_random_uniform_source ........................... Passed 0.31 sec Start 274: qa_sig_source 274/349 Test #274: qa_sig_source ...................................... Passed 0.32 sec Start 275: qa_simple_squelch 275/349 Test #275: qa_simple_squelch .................................. Passed 0.28 sec Start 276: test_gr_digital 276/349 Test #276: test_gr_digital .................................... Passed 0.02 sec Start 277: qa_binary_slicer_fb 277/349 Test #277: qa_binary_slicer_fb ................................ Passed 0.35 sec Start 278: qa_burst_shaper 278/349 Test #278: qa_burst_shaper .................................... Passed 0.39 sec Start 279: qa_chunks_to_symbols 279/349 Test #279: qa_chunks_to_symbols ............................... Passed 0.41 sec Start 280: qa_clock_recovery_mm 280/349 Test #280: qa_clock_recovery_mm ............................... Passed 0.36 sec Start 281: qa_cma_equalizer 281/349 Test #281: qa_cma_equalizer ................................... Passed 0.32 sec Start 282: qa_constellation 282/349 Test #282: qa_constellation ................................... Passed 10.77 sec Start 283: qa_constellation_decoder_cb 283/349 Test #283: qa_constellation_decoder_cb ........................ Passed 0.34 sec Start 284: qa_constellation_receiver 284/349 Test #284: qa_constellation_receiver .......................... Passed 1.33 sec Start 285: qa_constellation_soft_decoder_cf 285/349 Test #285: qa_constellation_soft_decoder_cf ................... Passed 1.50 sec Start 286: qa_correlate_access_code 286/349 Test #286: qa_correlate_access_code ........................... Passed 0.34 sec Start 287: qa_correlate_access_code_XX_ts 287/349 Test #287: qa_correlate_access_code_XX_ts ..................... Passed 0.35 sec Start 288: qa_correlate_access_code_tag 288/349 Test #288: qa_correlate_access_code_tag ....................... Passed 0.34 sec Start 289: qa_correlate_and_sync 289/349 Test #289: qa_correlate_and_sync .............................. Passed 0.35 sec Start 290: qa_costas_loop_cc 290/349 Test #290: qa_costas_loop_cc .................................. Passed 0.35 sec Start 291: qa_cpm 291/349 Test #291: qa_cpm ............................................. Passed 0.35 sec Start 292: qa_crc32 292/349 Test #292: qa_crc32 ........................................... Passed 0.32 sec Start 293: qa_crc32_bb 293/349 Test #293: qa_crc32_bb ........................................ Passed 0.36 sec Start 294: qa_diff_encoder 294/349 Test #294: qa_diff_encoder .................................... Passed 0.41 sec Start 295: qa_diff_phasor_cc 295/349 Test #295: qa_diff_phasor_cc .................................. Passed 0.34 sec Start 296: qa_digital 296/349 Test #296: qa_digital ......................................... Passed 0.34 sec Start 297: qa_fll_band_edge 297/349 Test #297: qa_fll_band_edge ................................... Passed 0.35 sec Start 298: qa_framer_sink 298/349 Test #298: qa_framer_sink ..................................... Passed 0.35 sec Start 299: qa_glfsr_source 299/349 Test #299: qa_glfsr_source .................................... Passed 1.12 sec Start 300: qa_hdlc_framer 300/349 Test #300: qa_hdlc_framer ..................................... Passed 0.73 sec Start 301: qa_header_payload_demux 301/349 Test #301: qa_header_payload_demux ............................ Passed 6.21 sec Start 302: qa_lfsr 302/349 Test #302: qa_lfsr ............................................ Passed 0.34 sec Start 303: qa_lms_equalizer 303/349 Test #303: qa_lms_equalizer ................................... Passed 0.34 sec Start 304: qa_map 304/349 Test #304: qa_map ............................................. Passed 0.35 sec Start 305: qa_mpsk_receiver 305/349 Test #305: qa_mpsk_receiver ................................... Passed 0.38 sec Start 306: qa_mpsk_snr_est 306/349 Test #306: qa_mpsk_snr_est .................................... Passed 0.61 sec Start 307: qa_ofdm_carrier_allocator_cvc 307/349 Test #307: qa_ofdm_carrier_allocator_cvc ...................... Passed 0.34 sec Start 308: qa_ofdm_chanest_vcvc 308/349 Test #308: qa_ofdm_chanest_vcvc ............................... Passed 0.48 sec Start 309: qa_ofdm_cyclic_prefixer 309/349 Test #309: qa_ofdm_cyclic_prefixer ............................ Passed 0.34 sec Start 310: qa_ofdm_frame_equalizer_vcvc 310/349 Test #310: qa_ofdm_frame_equalizer_vcvc ....................... Passed 0.34 sec Start 311: qa_ofdm_insert_preamble 311/349 Test #311: qa_ofdm_insert_preamble ............................ Passed 0.35 sec Start 312: qa_ofdm_serializer_vcc 312/349 Test #312: qa_ofdm_serializer_vcc ............................. Passed 0.34 sec Start 313: qa_ofdm_sync_sc_cfb 313/349 Test #313: qa_ofdm_sync_sc_cfb ................................ Passed 0.42 sec Start 314: qa_ofdm_txrx 314/349 Test #314: qa_ofdm_txrx ....................................... Passed 0.42 sec Start 315: qa_packet_format 315/349 Test #315: qa_packet_format ................................... Passed 0.94 sec Start 316: qa_packet_headergenerator_bb 316/349 Test #316: qa_packet_headergenerator_bb ....................... Passed 0.33 sec Start 317: qa_packet_headerparser_b 317/349 Test #317: qa_packet_headerparser_b ........................... Passed 8.37 sec Start 318: qa_pfb_clock_sync 318/349 Test #318: qa_pfb_clock_sync .................................. Passed 0.84 sec Start 319: qa_pn_correlator_cc 319/349 Test #319: qa_pn_correlator_cc ................................ Passed 0.36 sec Start 320: qa_probe_density 320/349 Test #320: qa_probe_density ................................... Passed 0.36 sec Start 321: qa_scrambler 321/349 Test #321: qa_scrambler ....................................... Passed 0.34 sec Start 322: qa_simple_correlator 322/349 Test #322: qa_simple_correlator ............................... Passed 0.38 sec Start 323: qa_simple_framer 323/349 Test #323: qa_simple_framer ................................... Passed 0.31 sec Start 324: qa_dtv 324/349 Test #324: qa_dtv ............................................. Passed 0.33 sec Start 325: atsci-test 325/349 Test #325: atsci-test ......................................... Passed 0.70 sec Start 326: qa_atsc 326/349 Test #326: qa_atsc ............................................ Passed 0.66 sec Start 327: qa_channel_model 327/349 Test #327: qa_channel_model ................................... Passed 0.31 sec Start 328: qa_fading_model 328/349 Test #328: qa_fading_model .................................... Passed 0.27 sec Start 329: qa_noaa 329/349 Test #329: qa_noaa ............................................ Passed 0.20 sec Start 330: qa_pager 330/349 Test #330: qa_pager ........................................... Passed 0.26 sec Start 331: qa_qtgui 331/349 Test #331: qa_qtgui ...........................................***Failed 0.45 sec /home/pawel/gnuradio/build/gr-qtgui/python/qtgui/qa_qtgui_test.sh: line 9: 495 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-qtgui/python/qtgui/qa_qtgui.py Start 332: qa_trellis 332/349 Test #332: qa_trellis ......................................... Passed 0.41 sec Start 333: qa_uhd 333/349 Test #333: qa_uhd ............................................. Passed 0.22 sec Start 334: qa_video_sdl 334/349 Test #334: qa_video_sdl ....................................... Passed 0.19 sec Start 335: qa_alaw_vocoder 335/349 Test #335: qa_alaw_vocoder .................................... Passed 0.26 sec Start 336: qa_codec2_vocoder 336/349 Test #336: qa_codec2_vocoder .................................. Passed 0.29 sec Start 337: qa_cvsd_vocoder 337/349 Test #337: qa_cvsd_vocoder .................................... Passed 0.27 sec Start 338: qa_g721_vocoder 338/349 Test #338: qa_g721_vocoder .................................... Passed 0.27 sec Start 339: qa_g723_24_vocoder 339/349 Test #339: qa_g723_24_vocoder ................................. Passed 0.27 sec Start 340: qa_g723_40_vocoder 340/349 Test #340: qa_g723_40_vocoder ................................. Passed 0.27 sec Start 341: qa_gsm_full_rate 341/349 Test #341: qa_gsm_full_rate ................................... Passed 0.25 sec Start 342: qa_ulaw_vocoder 342/349 Test #342: qa_ulaw_vocoder .................................... Passed 0.27 sec Start 343: qa_fcd 343/349 Test #343: qa_fcd ............................................. Passed 0.18 sec Start 344: qa_classify 344/349 Test #344: qa_classify ........................................ Passed 0.31 sec Start 345: qa_zeromq_pub 345/349 Test #345: qa_zeromq_pub ...................................... Passed 0.28 sec Start 346: qa_zeromq_pubsub 346/349 Test #346: qa_zeromq_pubsub ................................... Passed 0.79 sec Start 347: qa_zeromq_pushpull 347/349 Test #347: qa_zeromq_pushpull ................................. Passed 0.77 sec Start 348: qa_zeromq_reqrep 348/349 Test #348: qa_zeromq_reqrep ................................... Passed 0.80 sec Start 349: qa_zeromq_sub 349/349 Test #349: qa_zeromq_sub ...................................... Passed 1.02 sec 98% tests passed, 6 tests failed out of 349 Total Test time (real) = 146.96 sec The following tests FAILED: 153 - qa_cpp_py_binding (Failed) 154 - qa_cpp_py_binding_set (Failed) 155 - qa_ctrlport_probes (Failed) 194 - qa_skiphead (Failed) 202 - qa_tag_share (Failed) 331 - qa_qtgui (Failed)
velichkov commented 4 years ago

I tried to launch gnuradio-companion with /usr/lib/python2.7/dist-packages in PYTHONPATH, but I got the same error message. I ran the python2 command you provided and got this output:

lib/python2.7/site-packages

and then I ran the find command:

/usr/lib/python3.8/site-packages/gnuradio/grc/core/FlowGraph.py
/usr/lib/python3.8/site-packages/gnuradio/grc/gui/FlowGraph.py

Despite the fact that you've configured it with python2.7 it has been built and installed for python3.8. The cmake has a cache that sometimes could cause problems. First uninstall this, then remove the whole build directory, create it again and reinstall from scratch

cd build
sudo make uninstall
cd ..
rm -rvf build
mkdir build
cd build
cmake -DPYTHON_EXECUTABLE=/usr/bin/python2.7 -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so -DCMAKE_INSTALL_PREFIX=/usr -DENABLE_GRC=ON -DENABLE_GR_QTGUI=ON -DENABLE_INTERNAL_VOLK=OFF DENABLE_GR_CTRLPORT=OFF ../

Before building make sure the PYTHON_EXECUTABLE is set correctly in the CMakeCache.txt

grep PYTHON_EXECUTABLE CMakeCache.txt
make
sudo make install

When I navigated to /lib/python2.7/site-packages I couldn't find gnuradio package, but I could find it in /usr/lib/python2.7/dist-packages, I have no idea what's going on.

As you are not using Debian it has been installed in site-packages and that's OK. It's in python3.8 subdirectory and not python2.7 and that's why python2 could not find it. You need to reinstall it in /usr/lib/python2.7/site-packages

153/349 Test #153: qa_cpp_py_binding ..................................***Failed 0.22 sec Traceback (most recent call last): File "/home/pawel/gnuradio/gr-blocks/python/blocks/qa_cpp_py_binding.py", line 30, in from gnuradio.ctrlport import GNURadio ImportError: No module named ctrlport

194/349 Test #194: qa_skiphead ........................................***Failed 0.54 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_skiphead_test.sh: line 9: 13735 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_skiphead.py

202/349 Test #202: qa_tag_share .......................................***Failed 0.49 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_tag_share_test.sh: line 9: 14064 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_tag_share.py

Let's first fix the python 2/3 problem and then we could take care of these tests if they still fail.

lusiaold commented 4 years ago

Okay, I'll try this right now

lusiaold commented 4 years ago

Okay, it's done. Now I can launch gnuradio-companion with a blank project, but when I add QT GUI blocks, the program crashes.

Here's output of `ctest` again Test project /home/pawel/gnuradio/build Start 1: qa_volk_16i_32fc_dot_prod_32fc 1/346 Test #1: qa_volk_16i_32fc_dot_prod_32fc ..................... Passed 0.02 sec Start 2: qa_volk_16i_branch_4_state_8 2/346 Test #2: qa_volk_16i_branch_4_state_8 ....................... Passed 0.01 sec Start 3: qa_volk_16i_convert_8i 3/346 Test #3: qa_volk_16i_convert_8i ............................. Passed 0.01 sec Start 4: qa_volk_16i_max_star_16i 4/346 Test #4: qa_volk_16i_max_star_16i ........................... Passed 0.00 sec Start 5: qa_volk_16i_max_star_horizontal_16i 5/346 Test #5: qa_volk_16i_max_star_horizontal_16i ................ Passed 0.01 sec Start 6: qa_volk_16i_permute_and_scalar_add 6/346 Test #6: qa_volk_16i_permute_and_scalar_add ................. Passed 0.01 sec Start 7: qa_volk_16i_s32f_convert_32f 7/346 Test #7: qa_volk_16i_s32f_convert_32f ....................... Passed 0.02 sec Start 8: qa_volk_16i_x4_quad_max_star_16i 8/346 Test #8: qa_volk_16i_x4_quad_max_star_16i ................... Passed 0.01 sec Start 9: qa_volk_16i_x5_add_quad_16i_x4 9/346 Test #9: qa_volk_16i_x5_add_quad_16i_x4 ..................... Passed 0.01 sec Start 10: qa_volk_16ic_convert_32fc 10/346 Test #10: qa_volk_16ic_convert_32fc .......................... Passed 0.02 sec Start 11: qa_volk_16ic_deinterleave_16i_x2 11/346 Test #11: qa_volk_16ic_deinterleave_16i_x2 ................... Passed 0.01 sec Start 12: qa_volk_16ic_deinterleave_real_16i 12/346 Test #12: qa_volk_16ic_deinterleave_real_16i ................. Passed 0.01 sec Start 13: qa_volk_16ic_deinterleave_real_8i 13/346 Test #13: qa_volk_16ic_deinterleave_real_8i .................. Passed 0.01 sec Start 14: qa_volk_16ic_magnitude_16i 14/346 Test #14: qa_volk_16ic_magnitude_16i ......................... Passed 0.01 sec Start 15: qa_volk_16ic_s32f_deinterleave_32f_x2 15/346 Test #15: qa_volk_16ic_s32f_deinterleave_32f_x2 .............. Passed 0.02 sec Start 16: qa_volk_16ic_s32f_deinterleave_real_32f 16/346 Test #16: qa_volk_16ic_s32f_deinterleave_real_32f ............ Passed 0.01 sec Start 17: qa_volk_16ic_s32f_magnitude_32f 17/346 Test #17: qa_volk_16ic_s32f_magnitude_32f .................... Passed 0.01 sec Start 18: qa_volk_16ic_x2_dot_prod_16ic 18/346 Test #18: qa_volk_16ic_x2_dot_prod_16ic ...................... Passed 0.02 sec Start 19: qa_volk_16ic_x2_multiply_16ic 19/346 Test #19: qa_volk_16ic_x2_multiply_16ic ...................... Passed 0.02 sec Start 20: qa_volk_16u_byteswap 20/346 Test #20: qa_volk_16u_byteswap ............................... Passed 0.01 sec Start 21: qa_volk_16u_byteswappuppet_16u 21/346 Test #21: qa_volk_16u_byteswappuppet_16u ..................... Passed 0.01 sec Start 22: qa_volk_32f_64f_add_64f 22/346 Test #22: qa_volk_32f_64f_add_64f ............................ Passed 0.02 sec Start 23: qa_volk_32f_64f_multiply_64f 23/346 Test #23: qa_volk_32f_64f_multiply_64f ....................... Passed 0.02 sec Start 24: qa_volk_32f_8u_polarbutterfly_32f 24/346 Test #24: qa_volk_32f_8u_polarbutterfly_32f .................. Passed 0.01 sec Start 25: qa_volk_32f_8u_polarbutterflypuppet_32f 25/346 Test #25: qa_volk_32f_8u_polarbutterflypuppet_32f ............ Passed 0.02 sec Start 26: qa_volk_32f_accumulator_s32f 26/346 Test #26: qa_volk_32f_accumulator_s32f ....................... Passed 0.01 sec Start 27: qa_volk_32f_acos_32f 27/346 Test #27: qa_volk_32f_acos_32f ............................... Passed 0.01 sec Start 28: qa_volk_32f_asin_32f 28/346 Test #28: qa_volk_32f_asin_32f ............................... Passed 0.01 sec Start 29: qa_volk_32f_atan_32f 29/346 Test #29: qa_volk_32f_atan_32f ............................... Passed 0.02 sec Start 30: qa_volk_32f_binary_slicer_32i 30/346 Test #30: qa_volk_32f_binary_slicer_32i ...................... Passed 0.01 sec Start 31: qa_volk_32f_binary_slicer_8i 31/346 Test #31: qa_volk_32f_binary_slicer_8i ....................... Passed 0.01 sec Start 32: qa_volk_32f_convert_64f 32/346 Test #32: qa_volk_32f_convert_64f ............................ Passed 0.02 sec Start 33: qa_volk_32f_cos_32f 33/346 Test #33: qa_volk_32f_cos_32f ................................ Passed 0.02 sec Start 34: qa_volk_32f_expfast_32f 34/346 Test #34: qa_volk_32f_expfast_32f ............................ Passed 0.02 sec Start 35: qa_volk_32f_index_max_16u 35/346 Test #35: qa_volk_32f_index_max_16u .......................... Passed 0.01 sec Start 36: qa_volk_32f_index_max_32u 36/346 Test #36: qa_volk_32f_index_max_32u .......................... Passed 0.02 sec Start 37: qa_volk_32f_invsqrt_32f 37/346 Test #37: qa_volk_32f_invsqrt_32f ............................ Passed 0.01 sec Start 38: qa_volk_32f_log2_32f 38/346 Test #38: qa_volk_32f_log2_32f ............................... Passed 0.02 sec Start 39: qa_volk_32f_null_32f 39/346 Test #39: qa_volk_32f_null_32f ............................... Passed 0.01 sec Start 40: qa_volk_32f_s32f_32f_fm_detect_32f 40/346 Test #40: qa_volk_32f_s32f_32f_fm_detect_32f ................. Passed 0.01 sec Start 41: qa_volk_32f_s32f_calc_spectral_noise_floor_32f 41/346 Test #41: qa_volk_32f_s32f_calc_spectral_noise_floor_32f ..... Passed 0.01 sec Start 42: qa_volk_32f_s32f_convert_16i 42/346 Test #42: qa_volk_32f_s32f_convert_16i ....................... Passed 0.02 sec Start 43: qa_volk_32f_s32f_convert_32i 43/346 Test #43: qa_volk_32f_s32f_convert_32i ....................... Passed 0.02 sec Start 44: qa_volk_32f_s32f_convert_8i 44/346 Test #44: qa_volk_32f_s32f_convert_8i ........................ Passed 0.02 sec Start 45: qa_volk_32f_s32f_mod_rangepuppet_32f 45/346 Test #45: qa_volk_32f_s32f_mod_rangepuppet_32f ............... Passed 0.02 sec Start 46: qa_volk_32f_s32f_multiply_32f 46/346 Test #46: qa_volk_32f_s32f_multiply_32f ...................... Passed 0.02 sec Start 47: qa_volk_32f_s32f_normalize 47/346 Test #47: qa_volk_32f_s32f_normalize ......................... Passed 0.01 sec Start 48: qa_volk_32f_s32f_power_32f 48/346 Test #48: qa_volk_32f_s32f_power_32f ......................... Passed 0.04 sec Start 49: qa_volk_32f_s32f_s32f_mod_range_32f 49/346 Test #49: qa_volk_32f_s32f_s32f_mod_range_32f ................ Passed 0.01 sec Start 50: qa_volk_32f_s32f_stddev_32f 50/346 Test #50: qa_volk_32f_s32f_stddev_32f ........................ Passed 0.01 sec Start 51: qa_volk_32f_sin_32f 51/346 Test #51: qa_volk_32f_sin_32f ................................ Passed 0.01 sec Start 52: qa_volk_32f_sqrt_32f 52/346 Test #52: qa_volk_32f_sqrt_32f ............................... Passed 0.02 sec Start 53: qa_volk_32f_stddev_and_mean_32f_x2 53/346 Test #53: qa_volk_32f_stddev_and_mean_32f_x2 ................. Passed 0.01 sec Start 54: qa_volk_32f_tan_32f 54/346 Test #54: qa_volk_32f_tan_32f ................................ Passed 0.02 sec Start 55: qa_volk_32f_tanh_32f 55/346 Test #55: qa_volk_32f_tanh_32f ............................... Passed 0.02 sec Start 56: qa_volk_32f_x2_add_32f 56/346 Test #56: qa_volk_32f_x2_add_32f ............................. Passed 0.02 sec Start 57: qa_volk_32f_x2_divide_32f 57/346 Test #57: qa_volk_32f_x2_divide_32f .......................... Passed 0.02 sec Start 58: qa_volk_32f_x2_dot_prod_16i 58/346 Test #58: qa_volk_32f_x2_dot_prod_16i ........................ Passed 0.02 sec Start 59: qa_volk_32f_x2_dot_prod_32f 59/346 Test #59: qa_volk_32f_x2_dot_prod_32f ........................ Passed 0.03 sec Start 60: qa_volk_32f_x2_fm_detectpuppet_32f 60/346 Test #60: qa_volk_32f_x2_fm_detectpuppet_32f ................. Passed 0.01 sec Start 61: qa_volk_32f_x2_interleave_32fc 61/346 Test #61: qa_volk_32f_x2_interleave_32fc ..................... Passed 0.01 sec Start 62: qa_volk_32f_x2_max_32f 62/346 Test #62: qa_volk_32f_x2_max_32f ............................. Passed 0.02 sec Start 63: qa_volk_32f_x2_min_32f 63/346 Test #63: qa_volk_32f_x2_min_32f ............................. Passed 0.02 sec Start 64: qa_volk_32f_x2_multiply_32f 64/346 Test #64: qa_volk_32f_x2_multiply_32f ........................ Passed 0.02 sec Start 65: qa_volk_32f_x2_pow_32f 65/346 Test #65: qa_volk_32f_x2_pow_32f ............................. Passed 0.01 sec Start 66: qa_volk_32f_x2_s32f_interleave_16ic 66/346 Test #66: qa_volk_32f_x2_s32f_interleave_16ic ................ Passed 0.02 sec Start 67: qa_volk_32f_x2_subtract_32f 67/346 Test #67: qa_volk_32f_x2_subtract_32f ........................ Passed 0.02 sec Start 68: qa_volk_32f_x3_sum_of_poly_32f 68/346 Test #68: qa_volk_32f_x3_sum_of_poly_32f ..................... Passed 0.02 sec Start 69: qa_volk_32fc_32f_add_32fc 69/346 Test #69: qa_volk_32fc_32f_add_32fc .......................... Passed 0.01 sec Start 70: qa_volk_32fc_32f_dot_prod_32fc 70/346 Test #70: qa_volk_32fc_32f_dot_prod_32fc ..................... Passed 0.03 sec Start 71: qa_volk_32fc_32f_multiply_32fc 71/346 Test #71: qa_volk_32fc_32f_multiply_32fc ..................... Passed 0.02 sec Start 72: qa_volk_32fc_conjugate_32fc 72/346 Test #72: qa_volk_32fc_conjugate_32fc ........................ Passed 0.02 sec Start 73: qa_volk_32fc_convert_16ic 73/346 Test #73: qa_volk_32fc_convert_16ic .......................... Passed 0.02 sec Start 74: qa_volk_32fc_deinterleave_32f_x2 74/346 Test #74: qa_volk_32fc_deinterleave_32f_x2 ................... Passed 0.02 sec Start 75: qa_volk_32fc_deinterleave_64f_x2 75/346 Test #75: qa_volk_32fc_deinterleave_64f_x2 ................... Passed 0.03 sec Start 76: qa_volk_32fc_deinterleave_imag_32f 76/346 Test #76: qa_volk_32fc_deinterleave_imag_32f ................. Passed 0.02 sec Start 77: qa_volk_32fc_deinterleave_real_32f 77/346 Test #77: qa_volk_32fc_deinterleave_real_32f ................. Passed 0.01 sec Start 78: qa_volk_32fc_deinterleave_real_64f 78/346 Test #78: qa_volk_32fc_deinterleave_real_64f ................. Passed 0.01 sec Start 79: qa_volk_32fc_index_max_16u 79/346 Test #79: qa_volk_32fc_index_max_16u ......................... Passed 0.01 sec Start 80: qa_volk_32fc_index_max_32u 80/346 Test #80: qa_volk_32fc_index_max_32u ......................... Passed 0.01 sec Start 81: qa_volk_32fc_magnitude_32f 81/346 Test #81: qa_volk_32fc_magnitude_32f ......................... Passed 0.03 sec Start 82: qa_volk_32fc_magnitude_squared_32f 82/346 Test #82: qa_volk_32fc_magnitude_squared_32f ................. Passed 0.02 sec Start 83: qa_volk_32fc_s32f_atan2_32f 83/346 Test #83: qa_volk_32fc_s32f_atan2_32f ........................ Passed 0.03 sec Start 84: qa_volk_32fc_s32f_deinterleave_real_16i 84/346 Test #84: qa_volk_32fc_s32f_deinterleave_real_16i ............ Passed 0.01 sec Start 85: qa_volk_32fc_s32f_magnitude_16i 85/346 Test #85: qa_volk_32fc_s32f_magnitude_16i .................... Passed 0.01 sec Start 86: qa_volk_32fc_s32f_power_32fc 86/346 Test #86: qa_volk_32fc_s32f_power_32fc ....................... Passed 0.03 sec Start 87: qa_volk_32fc_s32f_power_spectrum_32f 87/346 Test #87: qa_volk_32fc_s32f_power_spectrum_32f ............... Passed 0.02 sec Start 88: qa_volk_32fc_s32f_x2_power_spectral_density_32f 88/346 Test #88: qa_volk_32fc_s32f_x2_power_spectral_density_32f .... Passed 0.01 sec Start 89: qa_volk_32fc_s32fc_multiply_32fc 89/346 Test #89: qa_volk_32fc_s32fc_multiply_32fc ................... Passed 0.02 sec Start 90: qa_volk_32fc_s32fc_rotatorpuppet_32fc 90/346 Test #90: qa_volk_32fc_s32fc_rotatorpuppet_32fc .............. Passed 0.03 sec Start 91: qa_volk_32fc_s32fc_x2_rotator_32fc 91/346 Test #91: qa_volk_32fc_s32fc_x2_rotator_32fc ................. Passed 0.01 sec Start 92: qa_volk_32fc_x2_add_32fc 92/346 Test #92: qa_volk_32fc_x2_add_32fc ........................... Passed 0.03 sec Start 93: qa_volk_32fc_x2_conjugate_dot_prod_32fc 93/346 Test #93: qa_volk_32fc_x2_conjugate_dot_prod_32fc ............ Passed 0.03 sec Start 94: qa_volk_32fc_x2_divide_32fc 94/346 Test #94: qa_volk_32fc_x2_divide_32fc ........................ Passed 0.04 sec Start 95: qa_volk_32fc_x2_dot_prod_32fc 95/346 Test #95: qa_volk_32fc_x2_dot_prod_32fc ...................... Passed 0.05 sec Start 96: qa_volk_32fc_x2_multiply_32fc 96/346 Test #96: qa_volk_32fc_x2_multiply_32fc ...................... Passed 0.03 sec Start 97: qa_volk_32fc_x2_multiply_conjugate_32fc 97/346 Test #97: qa_volk_32fc_x2_multiply_conjugate_32fc ............ Passed 0.03 sec Start 98: qa_volk_32fc_x2_s32f_square_dist_scalar_mult_32f 98/346 Test #98: qa_volk_32fc_x2_s32f_square_dist_scalar_mult_32f ... Passed 0.02 sec Start 99: qa_volk_32fc_x2_square_dist_32f 99/346 Test #99: qa_volk_32fc_x2_square_dist_32f .................... Passed 0.02 sec Start 100: qa_volk_32i_s32f_convert_32f 100/346 Test #100: qa_volk_32i_s32f_convert_32f ....................... Passed 0.01 sec Start 101: qa_volk_32i_x2_and_32i 101/346 Test #101: qa_volk_32i_x2_and_32i ............................. Passed 0.02 sec Start 102: qa_volk_32i_x2_or_32i 102/346 Test #102: qa_volk_32i_x2_or_32i .............................. Passed 0.02 sec Start 103: qa_volk_32u_byteswap 103/346 Test #103: qa_volk_32u_byteswap ............................... Passed 0.01 sec Start 104: qa_volk_32u_byteswappuppet_32u 104/346 Test #104: qa_volk_32u_byteswappuppet_32u ..................... Passed 0.01 sec Start 105: qa_volk_32u_popcnt 105/346 Test #105: qa_volk_32u_popcnt ................................. Passed 0.01 sec Start 106: qa_volk_32u_popcntpuppet_32u 106/346 Test #106: qa_volk_32u_popcntpuppet_32u ....................... Passed 0.01 sec Start 107: qa_volk_32u_reverse_32u 107/346 Test #107: qa_volk_32u_reverse_32u ............................ Passed 0.02 sec Start 108: qa_volk_64f_convert_32f 108/346 Test #108: qa_volk_64f_convert_32f ............................ Passed 0.02 sec Start 109: qa_volk_64f_x2_add_64f 109/346 Test #109: qa_volk_64f_x2_add_64f ............................. Passed 0.02 sec Start 110: qa_volk_64f_x2_max_64f 110/346 Test #110: qa_volk_64f_x2_max_64f ............................. Passed 0.01 sec Start 111: qa_volk_64f_x2_min_64f 111/346 Test #111: qa_volk_64f_x2_min_64f ............................. Passed 0.02 sec Start 112: qa_volk_64f_x2_multiply_64f 112/346 Test #112: qa_volk_64f_x2_multiply_64f ........................ Passed 0.02 sec Start 113: qa_volk_64u_byteswap 113/346 Test #113: qa_volk_64u_byteswap ............................... Passed 0.01 sec Start 114: qa_volk_64u_byteswappuppet_64u 114/346 Test #114: qa_volk_64u_byteswappuppet_64u ..................... Passed 0.02 sec Start 115: qa_volk_64u_popcnt 115/346 Test #115: qa_volk_64u_popcnt ................................. Passed 0.01 sec Start 116: qa_volk_64u_popcntpuppet_64u 116/346 Test #116: qa_volk_64u_popcntpuppet_64u ....................... Passed 0.01 sec Start 117: qa_volk_8i_convert_16i 117/346 Test #117: qa_volk_8i_convert_16i ............................. Passed 0.01 sec Start 118: qa_volk_8i_s32f_convert_32f 118/346 Test #118: qa_volk_8i_s32f_convert_32f ........................ Passed 0.01 sec Start 119: qa_volk_8ic_deinterleave_16i_x2 119/346 Test #119: qa_volk_8ic_deinterleave_16i_x2 .................... Passed 0.01 sec Start 120: qa_volk_8ic_deinterleave_real_16i 120/346 Test #120: qa_volk_8ic_deinterleave_real_16i .................. Passed 0.01 sec Start 121: qa_volk_8ic_deinterleave_real_8i 121/346 Test #121: qa_volk_8ic_deinterleave_real_8i ................... Passed 0.01 sec Start 122: qa_volk_8ic_s32f_deinterleave_32f_x2 122/346 Test #122: qa_volk_8ic_s32f_deinterleave_32f_x2 ............... Passed 0.02 sec Start 123: qa_volk_8ic_s32f_deinterleave_real_32f 123/346 Test #123: qa_volk_8ic_s32f_deinterleave_real_32f ............. Passed 0.01 sec Start 124: qa_volk_8ic_x2_multiply_conjugate_16ic 124/346 Test #124: qa_volk_8ic_x2_multiply_conjugate_16ic ............. Passed 0.02 sec Start 125: qa_volk_8ic_x2_s32f_multiply_conjugate_32fc 125/346 Test #125: qa_volk_8ic_x2_s32f_multiply_conjugate_32fc ........ Passed 0.01 sec Start 126: qa_volk_8u_conv_k7_r2puppet_8u 126/346 Test #126: qa_volk_8u_conv_k7_r2puppet_8u ..................... Passed 0.01 sec Start 127: qa_volk_8u_x2_encodeframepolar_8u 127/346 Test #127: qa_volk_8u_x2_encodeframepolar_8u .................. Passed 0.01 sec Start 128: qa_volk_8u_x3_encodepolar_8u_x2 128/346 Test #128: qa_volk_8u_x3_encodepolar_8u_x2 .................... Passed 0.01 sec Start 129: qa_volk_8u_x3_encodepolarpuppet_8u 129/346 Test #129: qa_volk_8u_x3_encodepolarpuppet_8u ................. Passed 0.02 sec Start 130: qa_volk_8u_x4_conv_k7_r2_8u 130/346 Test #130: qa_volk_8u_x4_conv_k7_r2_8u ........................ Passed 0.01 sec Start 131: gr-runtime-test 131/346 Test #131: gr-runtime-test .................................... Passed 1.45 sec Start 132: gr-pmt-test 132/346 Test #132: gr-pmt-test ........................................ Passed 0.39 sec Start 133: qa_feval 133/346 Test #133: qa_feval ........................................... Passed 0.19 sec Start 134: qa_flowgraph 134/346 Test #134: qa_flowgraph ....................................... Passed 0.66 sec Start 135: qa_hier_block2 135/346 Test #135: qa_hier_block2 ..................................... Passed 4.31 sec Start 136: qa_kludged_imports 136/346 Test #136: qa_kludged_imports ................................. Passed 0.18 sec Start 137: qa_random 137/346 Test #137: qa_random .......................................... Passed 0.26 sec Start 138: qa_tag_utils 138/346 Test #138: qa_tag_utils ....................................... Passed 0.18 sec Start 139: qa_pmt 139/346 Test #139: qa_pmt ............................................. Passed 0.15 sec Start 140: qa_pmt_to_python 140/346 Test #140: qa_pmt_to_python ................................... Passed 0.16 sec Start 141: test_gr_blocks 141/346 Test #141: test_gr_blocks ..................................... Passed 0.61 sec Start 142: qa_add_mult_div_sub 142/346 Test #142: qa_add_mult_div_sub ................................ Passed 0.34 sec Start 143: qa_add_mult_v 143/346 Test #143: qa_add_mult_v ...................................... Passed 0.39 sec Start 144: qa_affinity 144/346 Test #144: qa_affinity ........................................ Passed 0.24 sec Start 145: qa_argmax 145/346 Test #145: qa_argmax .......................................... Passed 0.25 sec Start 146: qa_bin_statistics 146/346 Test #146: qa_bin_statistics .................................. Passed 0.25 sec Start 147: qa_block_behavior 147/346 Test #147: qa_block_behavior .................................. Passed 0.24 sec Start 148: qa_block_gateway 148/346 Test #148: qa_block_gateway ................................... Passed 0.42 sec Start 149: qa_boolean_operators 149/346 Test #149: qa_boolean_operators ............................... Passed 0.31 sec Start 150: qa_burst_tagger 150/346 Test #150: qa_burst_tagger .................................... Passed 0.24 sec Start 151: qa_conjugate 151/346 Test #151: qa_conjugate ....................................... Passed 0.24 sec Start 152: qa_copy 152/346 Test #152: qa_copy ............................................ Passed 0.25 sec Start 153: qa_delay 153/346 Test #153: qa_delay ........................................... Passed 0.27 sec Start 154: qa_endian_swap 154/346 Test #154: qa_endian_swap ..................................... Passed 0.24 sec Start 155: qa_exponentiate_const_cci 155/346 Test #155: qa_exponentiate_const_cci .......................... Passed 0.48 sec Start 156: qa_file_metadata 156/346 Test #156: qa_file_metadata ................................... Passed 0.27 sec Start 157: qa_file_source_sink 157/346 Test #157: qa_file_source_sink ................................ Passed 0.26 sec Start 158: qa_head 158/346 Test #158: qa_head ............................................ Passed 0.26 sec Start 159: qa_hier_block2 159/346 Test #159: qa_hier_block2 ..................................... Passed 3.31 sec Start 160: qa_hier_block2_message_connections 160/346 Test #160: qa_hier_block2_message_connections ................. Passed 0.27 sec Start 161: qa_integrate 161/346 Test #161: qa_integrate ....................................... Passed 0.26 sec Start 162: qa_interleave 162/346 Test #162: qa_interleave ...................................... Passed 0.25 sec Start 163: qa_keep_m_in_n 163/346 Test #163: qa_keep_m_in_n ..................................... Passed 0.27 sec Start 164: qa_keep_one_in_n 164/346 Test #164: qa_keep_one_in_n ................................... Passed 0.26 sec Start 165: qa_max 165/346 Test #165: qa_max ............................................. Passed 0.25 sec Start 166: qa_message 166/346 Test #166: qa_message ......................................... Passed 2.27 sec Start 167: qa_message_tags 167/346 Test #167: qa_message_tags .................................... Passed 2.27 sec Start 168: qa_min 168/346 Test #168: qa_min ............................................. Passed 0.25 sec Start 169: qa_moving_average 169/346 Test #169: qa_moving_average .................................. Passed 0.39 sec Start 170: qa_multiply_conjugate 170/346 Test #170: qa_multiply_conjugate .............................. Passed 0.23 sec Start 171: qa_multiply_matrix_xx 171/346 Test #171: qa_multiply_matrix_xx .............................. Passed 0.24 sec Start 172: qa_mute 172/346 Test #172: qa_mute ............................................ Passed 0.25 sec Start 173: qa_nlog10 173/346 Test #173: qa_nlog10 .......................................... Passed 0.25 sec Start 174: qa_null_sink_source 174/346 Test #174: qa_null_sink_source ................................ Passed 0.24 sec Start 175: qa_pack_k_bits 175/346 Test #175: qa_pack_k_bits ..................................... Passed 0.25 sec Start 176: qa_packed_to_unpacked 176/346 Test #176: qa_packed_to_unpacked .............................. Passed 0.30 sec Start 177: qa_patterned_interleaver 177/346 Test #177: qa_patterned_interleaver ........................... Passed 0.24 sec Start 178: qa_pdu 178/346 Test #178: qa_pdu ............................................. Passed 1.07 sec Start 179: qa_peak_detector 179/346 Test #179: qa_peak_detector ................................... Passed 0.25 sec Start 180: qa_peak_detector2 180/346 Test #180: qa_peak_detector2 .................................. Passed 0.26 sec Start 181: qa_pipe_fittings 181/346 Test #181: qa_pipe_fittings ................................... Passed 0.27 sec Start 182: qa_plateau_detector_fb 182/346 Test #182: qa_plateau_detector_fb ............................. Passed 0.28 sec Start 183: qa_probe_signal 183/346 Test #183: qa_probe_signal .................................... Passed 0.25 sec Start 184: qa_python_message_passing 184/346 Test #184: qa_python_message_passing .......................... Passed 1.26 sec Start 185: qa_regenerate 185/346 Test #185: qa_regenerate ...................................... Passed 0.25 sec Start 186: qa_repack_bits_bb 186/346 Test #186: qa_repack_bits_bb .................................. Passed 0.30 sec Start 187: qa_repeat 187/346 Test #187: qa_repeat .......................................... Passed 0.25 sec Start 188: qa_rms 188/346 Test #188: qa_rms ............................................. Passed 0.35 sec Start 189: qa_sample_and_hold 189/346 Test #189: qa_sample_and_hold ................................. Passed 0.23 sec Start 190: qa_selector 190/346 Test #190: qa_selector ........................................ Passed 0.26 sec Start 191: qa_skiphead 191/346 Test #191: qa_skiphead ........................................***Failed 0.56 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_skiphead_test.sh: line 9: 2382 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_skiphead.py Start 192: qa_socket_pdu 192/346 Test #192: qa_socket_pdu ...................................... Passed 4.82 sec Start 193: qa_stream_mux 193/346 Test #193: qa_stream_mux ...................................... Passed 0.29 sec Start 194: qa_stream_to_tagged_stream 194/346 Test #194: qa_stream_to_tagged_stream ......................... Passed 0.25 sec Start 195: qa_stretch 195/346 Test #195: qa_stretch ......................................... Passed 0.25 sec Start 196: qa_tag_debug 196/346 Test #196: qa_tag_debug ....................................... Passed 0.25 sec Start 197: qa_tag_file_sink 197/346 Test #197: qa_tag_file_sink ................................... Passed 0.25 sec Start 198: qa_tag_gate 198/346 Test #198: qa_tag_gate ........................................ Passed 0.24 sec Start 199: qa_tag_share 199/346 Test #199: qa_tag_share .......................................***Failed 0.49 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_tag_share_test.sh: line 9: 2714 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_tag_share.py Start 200: qa_tagged_stream_mux 200/346 Test #200: qa_tagged_stream_mux ............................... Passed 0.25 sec Start 201: qa_tags_strobe 201/346 Test #201: qa_tags_strobe ..................................... Passed 0.24 sec Start 202: qa_tcp_server_sink 202/346 Test #202: qa_tcp_server_sink ................................. Passed 0.28 sec Start 203: qa_threshold 203/346 Test #203: qa_threshold ....................................... Passed 0.25 sec Start 204: qa_throttle 204/346 Test #204: qa_throttle ........................................ Passed 0.22 sec Start 205: qa_transcendental 205/346 Test #205: qa_transcendental .................................. Passed 0.24 sec Start 206: qa_tsb_vector_sink_X 206/346 Test #206: qa_tsb_vector_sink_X ............................... Passed 0.25 sec Start 207: qa_type_conversions 207/346 Test #207: qa_type_conversions ................................ Passed 0.33 sec Start 208: qa_udp_source_sink 208/346 Test #208: qa_udp_source_sink ................................. Passed 8.29 sec Start 209: qa_unpack_k_bits 209/346 Test #209: qa_unpack_k_bits ................................... Passed 0.25 sec Start 210: qa_vco 210/346 Test #210: qa_vco ............................................. Passed 0.25 sec Start 211: qa_vector_insert 211/346 Test #211: qa_vector_insert ................................... Passed 0.64 sec Start 212: qa_vector_map 212/346 Test #212: qa_vector_map ...................................... Passed 0.25 sec Start 213: qa_vector_sink_source 213/346 Test #213: qa_vector_sink_source .............................. Passed 0.26 sec Start 214: qa_wavfile 214/346 Test #214: qa_wavfile ......................................... Passed 0.25 sec Start 215: gr-fec-reed-solomon-test 215/346 Test #215: gr-fec-reed-solomon-test ........................... Passed 0.02 sec Start 216: qa_ber_bf 216/346 Test #216: qa_ber_bf .......................................... Passed 0.28 sec Start 217: qa_depuncture 217/346 Test #217: qa_depuncture ...................................... Passed 0.92 sec Start 218: qa_ecc_ccsds_27 218/346 Test #218: qa_ecc_ccsds_27 .................................... Passed 0.25 sec Start 219: qa_fecapi_cc 219/346 Test #219: qa_fecapi_cc ....................................... Passed 0.72 sec Start 220: qa_fecapi_dummy 220/346 Test #220: qa_fecapi_dummy .................................... Passed 0.86 sec Start 221: qa_fecapi_ldpc 221/346 Test #221: qa_fecapi_ldpc ..................................... Passed 2.27 sec Start 222: qa_fecapi_repetition 222/346 Test #222: qa_fecapi_repetition ............................... Passed 1.62 sec Start 223: qa_polar_decoder_sc 223/346 Test #223: qa_polar_decoder_sc ................................ Passed 0.58 sec Start 224: qa_polar_decoder_sc_list 224/346 Test #224: qa_polar_decoder_sc_list ........................... Passed 0.48 sec Start 225: qa_polar_decoder_sc_systematic 225/346 Test #225: qa_polar_decoder_sc_systematic ..................... Passed 0.42 sec Start 226: qa_polar_encoder 226/346 Test #226: qa_polar_encoder ................................... Passed 0.57 sec Start 227: qa_polar_encoder_systematic 227/346 Test #227: qa_polar_encoder_systematic ........................ Passed 0.38 sec Start 228: qa_puncture 228/346 Test #228: qa_puncture ........................................ Passed 1.76 sec Start 229: qa_fft 229/346 Test #229: qa_fft ............................................. Passed 0.28 sec Start 230: qa_goertzel 230/346 Test #230: qa_goertzel ........................................ Passed 0.28 sec Start 231: test_gr_filter 231/346 Test #231: test_gr_filter ..................................... Passed 0.37 sec Start 232: qa_dc_blocker 232/346 Test #232: qa_dc_blocker ...................................... Passed 0.27 sec Start 233: qa_fft_filter 233/346 Test #233: qa_fft_filter ...................................... Passed 3.82 sec Start 234: qa_filter_delay_fc 234/346 Test #234: qa_filter_delay_fc ................................. Passed 0.27 sec Start 235: qa_filterbank 235/346 Test #235: qa_filterbank ...................................... Passed 0.28 sec Start 236: qa_fir_filter 236/346 Test #236: qa_fir_filter ...................................... Passed 0.32 sec Start 237: qa_firdes 237/346 Test #237: qa_firdes .......................................... Passed 0.28 sec Start 238: qa_fractional_interpolator 238/346 Test #238: qa_fractional_interpolator ......................... Passed 0.34 sec Start 239: qa_fractional_resampler 239/346 Test #239: qa_fractional_resampler ............................ Passed 0.41 sec Start 240: qa_freq_xlating_fft_filter 240/346 Test #240: qa_freq_xlating_fft_filter ......................... Passed 0.38 sec Start 241: qa_freq_xlating_fir_filter 241/346 Test #241: qa_freq_xlating_fir_filter ......................... Passed 0.33 sec Start 242: qa_hilbert 242/346 Test #242: qa_hilbert ......................................... Passed 0.27 sec Start 243: qa_iir_filter 243/346 Test #243: qa_iir_filter ...................................... Passed 0.32 sec Start 244: qa_interp_fir_filter 244/346 Test #244: qa_interp_fir_filter ............................... Passed 0.25 sec Start 245: qa_pfb_arb_resampler 245/346 Test #245: qa_pfb_arb_resampler ............................... Passed 0.66 sec Start 246: qa_pfb_channelizer 246/346 Test #246: qa_pfb_channelizer ................................. Passed 0.84 sec Start 247: qa_pfb_decimator 247/346 Test #247: qa_pfb_decimator ................................... Passed 1.24 sec Start 248: qa_pfb_interpolator 248/346 Test #248: qa_pfb_interpolator ................................ Passed 0.33 sec Start 249: qa_pfb_synthesizer 249/346 Test #249: qa_pfb_synthesizer ................................. Passed 0.66 sec Start 250: qa_pm_remez 250/346 Test #250: qa_pm_remez ........................................ Passed 0.27 sec Start 251: qa_rational_resampler 251/346 Test #251: qa_rational_resampler .............................. Passed 0.29 sec Start 252: qa_single_pole_iir 252/346 Test #252: qa_single_pole_iir ................................. Passed 0.29 sec Start 253: test_gr_analog 253/346 Test #253: test_gr_analog ..................................... Passed 0.02 sec Start 254: qa_agc 254/346 Test #254: qa_agc ............................................. Passed 0.31 sec Start 255: qa_cpfsk 255/346 Test #255: qa_cpfsk ........................................... Passed 0.28 sec Start 256: qa_ctcss_squelch 256/346 Test #256: qa_ctcss_squelch ................................... Passed 0.29 sec Start 257: qa_dpll 257/346 Test #257: qa_dpll ............................................ Passed 0.28 sec Start 258: qa_fastnoise 258/346 Test #258: qa_fastnoise ....................................... Passed 10.12 sec Start 259: qa_fmdet 259/346 Test #259: qa_fmdet ........................................... Passed 0.26 sec Start 260: qa_frequency_modulator 260/346 Test #260: qa_frequency_modulator ............................. Passed 0.33 sec Start 261: qa_noise 261/346 Test #261: qa_noise ........................................... Passed 0.34 sec Start 262: qa_phase_modulator 262/346 Test #262: qa_phase_modulator ................................. Passed 0.31 sec Start 263: qa_pll_carriertracking 263/346 Test #263: qa_pll_carriertracking ............................. Passed 0.27 sec Start 264: qa_pll_freqdet 264/346 Test #264: qa_pll_freqdet ..................................... Passed 0.29 sec Start 265: qa_pll_refout 265/346 Test #265: qa_pll_refout ...................................... Passed 0.29 sec Start 266: qa_probe_avg_mag_sqrd 266/346 Test #266: qa_probe_avg_mag_sqrd .............................. Passed 0.29 sec Start 267: qa_pwr_squelch 267/346 Test #267: qa_pwr_squelch ..................................... Passed 0.26 sec Start 268: qa_quadrature_demod 268/346 Test #268: qa_quadrature_demod ................................ Passed 0.28 sec Start 269: qa_rail_ff 269/346 Test #269: qa_rail_ff ......................................... Passed 0.28 sec Start 270: qa_random_uniform_source 270/346 Test #270: qa_random_uniform_source ........................... Passed 0.29 sec Start 271: qa_sig_source 271/346 Test #271: qa_sig_source ...................................... Passed 0.31 sec Start 272: qa_simple_squelch 272/346 Test #272: qa_simple_squelch .................................. Passed 0.27 sec Start 273: test_gr_digital 273/346 Test #273: test_gr_digital .................................... Passed 0.01 sec Start 274: qa_binary_slicer_fb 274/346 Test #274: qa_binary_slicer_fb ................................ Passed 0.33 sec Start 275: qa_burst_shaper 275/346 Test #275: qa_burst_shaper .................................... Passed 0.35 sec Start 276: qa_chunks_to_symbols 276/346 Test #276: qa_chunks_to_symbols ............................... Passed 0.34 sec Start 277: qa_clock_recovery_mm 277/346 Test #277: qa_clock_recovery_mm ............................... Passed 0.35 sec Start 278: qa_cma_equalizer 278/346 Test #278: qa_cma_equalizer ................................... Passed 0.31 sec Start 279: qa_constellation 279/346 Test #279: qa_constellation ................................... Passed 10.64 sec Start 280: qa_constellation_decoder_cb 280/346 Test #280: qa_constellation_decoder_cb ........................ Passed 0.33 sec Start 281: qa_constellation_receiver 281/346 Test #281: qa_constellation_receiver .......................... Passed 1.25 sec Start 282: qa_constellation_soft_decoder_cf 282/346 Test #282: qa_constellation_soft_decoder_cf ................... Passed 1.50 sec Start 283: qa_correlate_access_code 283/346 Test #283: qa_correlate_access_code ........................... Passed 0.32 sec Start 284: qa_correlate_access_code_XX_ts 284/346 Test #284: qa_correlate_access_code_XX_ts ..................... Passed 0.35 sec Start 285: qa_correlate_access_code_tag 285/346 Test #285: qa_correlate_access_code_tag ....................... Passed 0.32 sec Start 286: qa_correlate_and_sync 286/346 Test #286: qa_correlate_and_sync .............................. Passed 0.33 sec Start 287: qa_costas_loop_cc 287/346 Test #287: qa_costas_loop_cc .................................. Passed 0.33 sec Start 288: qa_cpm 288/346 Test #288: qa_cpm ............................................. Passed 0.35 sec Start 289: qa_crc32 289/346 Test #289: qa_crc32 ........................................... Passed 0.33 sec Start 290: qa_crc32_bb 290/346 Test #290: qa_crc32_bb ........................................ Passed 0.37 sec Start 291: qa_diff_encoder 291/346 Test #291: qa_diff_encoder .................................... Passed 0.40 sec Start 292: qa_diff_phasor_cc 292/346 Test #292: qa_diff_phasor_cc .................................. Passed 0.31 sec Start 293: qa_digital 293/346 Test #293: qa_digital ......................................... Passed 0.33 sec Start 294: qa_fll_band_edge 294/346 Test #294: qa_fll_band_edge ................................... Passed 0.33 sec Start 295: qa_framer_sink 295/346 Test #295: qa_framer_sink ..................................... Passed 0.34 sec Start 296: qa_glfsr_source 296/346 Test #296: qa_glfsr_source .................................... Passed 1.04 sec Start 297: qa_hdlc_framer 297/346 Test #297: qa_hdlc_framer ..................................... Passed 0.76 sec Start 298: qa_header_payload_demux 298/346 Test #298: qa_header_payload_demux ............................ Passed 6.21 sec Start 299: qa_lfsr 299/346 Test #299: qa_lfsr ............................................ Passed 0.35 sec Start 300: qa_lms_equalizer 300/346 Test #300: qa_lms_equalizer ................................... Passed 0.33 sec Start 301: qa_map 301/346 Test #301: qa_map ............................................. Passed 0.32 sec Start 302: qa_mpsk_receiver 302/346 Test #302: qa_mpsk_receiver ................................... Passed 0.40 sec Start 303: qa_mpsk_snr_est 303/346 Test #303: qa_mpsk_snr_est .................................... Passed 0.62 sec Start 304: qa_ofdm_carrier_allocator_cvc 304/346 Test #304: qa_ofdm_carrier_allocator_cvc ...................... Passed 0.36 sec Start 305: qa_ofdm_chanest_vcvc 305/346 Test #305: qa_ofdm_chanest_vcvc ............................... Passed 0.51 sec Start 306: qa_ofdm_cyclic_prefixer 306/346 Test #306: qa_ofdm_cyclic_prefixer ............................ Passed 0.37 sec Start 307: qa_ofdm_frame_equalizer_vcvc 307/346 Test #307: qa_ofdm_frame_equalizer_vcvc ....................... Passed 0.36 sec Start 308: qa_ofdm_insert_preamble 308/346 Test #308: qa_ofdm_insert_preamble ............................ Passed 0.34 sec Start 309: qa_ofdm_serializer_vcc 309/346 Test #309: qa_ofdm_serializer_vcc ............................. Passed 0.35 sec Start 310: qa_ofdm_sync_sc_cfb 310/346 Test #310: qa_ofdm_sync_sc_cfb ................................ Passed 0.42 sec Start 311: qa_ofdm_txrx 311/346 Test #311: qa_ofdm_txrx ....................................... Passed 0.42 sec Start 312: qa_packet_format 312/346 Test #312: qa_packet_format ................................... Passed 0.96 sec Start 313: qa_packet_headergenerator_bb 313/346 Test #313: qa_packet_headergenerator_bb ....................... Passed 0.34 sec Start 314: qa_packet_headerparser_b 314/346 Test #314: qa_packet_headerparser_b ........................... Passed 8.37 sec Start 315: qa_pfb_clock_sync 315/346 Test #315: qa_pfb_clock_sync .................................. Passed 0.85 sec Start 316: qa_pn_correlator_cc 316/346 Test #316: qa_pn_correlator_cc ................................ Passed 0.34 sec Start 317: qa_probe_density 317/346 Test #317: qa_probe_density ................................... Passed 0.33 sec Start 318: qa_scrambler 318/346 Test #318: qa_scrambler ....................................... Passed 0.35 sec Start 319: qa_simple_correlator 319/346 Test #319: qa_simple_correlator ............................... Passed 0.33 sec Start 320: qa_simple_framer 320/346 Test #320: qa_simple_framer ................................... Passed 0.32 sec Start 321: qa_dtv 321/346 Test #321: qa_dtv ............................................. Passed 0.28 sec Start 322: atsci-test 322/346 Test #322: atsci-test ......................................... Passed 0.65 sec Start 323: qa_atsc 323/346 Test #323: qa_atsc ............................................ Passed 0.64 sec Start 324: qa_channel_model 324/346 Test #324: qa_channel_model ................................... Passed 0.29 sec Start 325: qa_fading_model 325/346 Test #325: qa_fading_model .................................... Passed 0.26 sec Start 326: qa_noaa 326/346 Test #326: qa_noaa ............................................ Passed 0.18 sec Start 327: qa_pager 327/346 Test #327: qa_pager ........................................... Passed 0.27 sec Start 328: qa_qtgui 328/346 Test #328: qa_qtgui ...........................................***Failed 0.41 sec /home/pawel/gnuradio/build/gr-qtgui/python/qtgui/qa_qtgui_test.sh: line 9: 21730 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-qtgui/python/qtgui/qa_qtgui.py Start 329: qa_trellis 329/346 Test #329: qa_trellis ......................................... Passed 0.40 sec Start 330: qa_uhd 330/346 Test #330: qa_uhd ............................................. Passed 0.19 sec Start 331: qa_video_sdl 331/346 Test #331: qa_video_sdl ....................................... Passed 0.18 sec Start 332: qa_alaw_vocoder 332/346 Test #332: qa_alaw_vocoder .................................... Passed 0.26 sec Start 333: qa_codec2_vocoder 333/346 Test #333: qa_codec2_vocoder .................................. Passed 0.28 sec Start 334: qa_cvsd_vocoder 334/346 Test #334: qa_cvsd_vocoder .................................... Passed 0.27 sec Start 335: qa_g721_vocoder 335/346 Test #335: qa_g721_vocoder .................................... Passed 0.25 sec Start 336: qa_g723_24_vocoder 336/346 Test #336: qa_g723_24_vocoder ................................. Passed 0.27 sec Start 337: qa_g723_40_vocoder 337/346 Test #337: qa_g723_40_vocoder ................................. Passed 0.27 sec Start 338: qa_gsm_full_rate 338/346 Test #338: qa_gsm_full_rate ................................... Passed 0.26 sec Start 339: qa_ulaw_vocoder 339/346 Test #339: qa_ulaw_vocoder .................................... Passed 0.26 sec Start 340: qa_fcd 340/346 Test #340: qa_fcd ............................................. Passed 0.19 sec Start 341: qa_classify 341/346 Test #341: qa_classify ........................................ Passed 0.30 sec Start 342: qa_zeromq_pub 342/346 Test #342: qa_zeromq_pub ...................................... Passed 0.28 sec Start 343: qa_zeromq_pubsub 343/346 Test #343: qa_zeromq_pubsub ................................... Passed 0.77 sec Start 344: qa_zeromq_pushpull 344/346 Test #344: qa_zeromq_pushpull ................................. Passed 0.79 sec Start 345: qa_zeromq_reqrep 345/346 Test #345: qa_zeromq_reqrep ................................... Passed 0.78 sec Start 346: qa_zeromq_sub 346/346 Test #346: qa_zeromq_sub ...................................... Passed 1.00 sec 99% tests passed, 3 tests failed out of 346 Total Test time (real) = 147.33 sec The following tests FAILED: 191 - qa_skiphead (Failed) 199 - qa_tag_share (Failed) 328 - qa_qtgui (Failed)
velichkov commented 4 years ago

Okay, it's done. Now I can launch gnuradio-companion with a blank project,

:+1:

but when I add QT GUI blocks, the program crashes. Here's output of ctest again: 191/346 Test #191: qa_skiphead ........................................***Failed 0.56 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_skiphead_test.sh: line 9: 2382 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_skiphead.py

You need to take a backtrace with gdb. Open /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_skiphead_test.sh and change the last line to

gdb --ex run --args /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_skiphead.py

Then in the terminal execute the qa_skiphead_test.sh and when it crashes you will see the (gdb) prompt, execute bt command and provide the full output.

If it does not print filenames and line numbers you may need to rebuild with -DCMAKE_BUILD_TYPE=RelWithDebInfo

199/346 Test #199: qa_tag_share .......................................***Failed 0.49 sec /home/pawel/gnuradio/build/gr-blocks/python/blocks/qa_tag_share_test.sh: line 9: 2714 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_tag_share.py

328/346 Test #328: qa_qtgui ...........................................***Failed 0.41 sec /home/pawel/gnuradio/build/gr-qtgui/python/qtgui/qa_qtgui_test.sh: line 9: 21730 Segmentation fault (core dumped) /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-qtgui/python/qtgui/qa_qtgui.py

Same procedure as above for qa_tag_share_test.sh and qa_qtgui_test.sh scripts.

lusiaold commented 4 years ago

Okay, here are the outputs

qa_skipahead_test.sh GNU gdb (GDB) 8.3.1 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-pc-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: . Find the GDB manual and other documentation resources online at: . For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from /usr/bin/python2.7... (No debugging symbols found in /usr/bin/python2.7) Starting program: /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_skiphead.py [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". /usr/lib/../share/gcc-9.2.0/python/libstdcxx/v6/xmethods.py:731: SyntaxWarning: list indices must be integers or slices, not str; perhaps you missed a comma? refcounts = ['_M_refcount']['_M_pi'] [New Thread 0x7ffff002d700 (LWP 24431)] [New Thread 0x7fffef82c700 (LWP 24432)] [New Thread 0x7fffef02b700 (LWP 24433)] [New Thread 0x7fffee82a700 (LWP 24434)] [Thread 0x7fffef82c700 (LWP 24432) exited] [Thread 0x7ffff002d700 (LWP 24431) exited] [Thread 0x7fffef02b700 (LWP 24433) exited] [Thread 0x7fffee82a700 (LWP 24434) exited] [New Thread 0x7fffee82a700 (LWP 24435)] [New Thread 0x7fffef02b700 (LWP 24436)] [New Thread 0x7fffef82c700 (LWP 24437)] [New Thread 0x7ffff002d700 (LWP 24438)] [Thread 0x7fffee82a700 (LWP 24435) exited] [Thread 0x7fffef02b700 (LWP 24436) exited] [Thread 0x7fffef82c700 (LWP 24437) exited] [Thread 0x7ffff002d700 (LWP 24438) exited] [New Thread 0x7ffff002d700 (LWP 24439)] [New Thread 0x7fffef82c700 (LWP 24440)] [New Thread 0x7fffef02b700 (LWP 24441)] [New Thread 0x7fffee82a700 (LWP 24442)] [Thread 0x7fffef02b700 (LWP 24441) exited] [Thread 0x7fffef82c700 (LWP 24440) exited] [Thread 0x7ffff002d700 (LWP 24439) exited] [Thread 0x7fffee82a700 (LWP 24442) exited] [New Thread 0x7fffee82a700 (LWP 24443)] [New Thread 0x7fffef02b700 (LWP 24444)] [New Thread 0x7fffef82c700 (LWP 24445)] [New Thread 0x7ffff002d700 (LWP 24446)] [Thread 0x7fffee82a700 (LWP 24443) exited] [Thread 0x7fffef82c700 (LWP 24445) exited] [Thread 0x7ffff002d700 (LWP 24446) exited] [Thread 0x7fffef02b700 (LWP 24444) exited] [New Thread 0x7ffff002d700 (LWP 24447)] [New Thread 0x7fffef82c700 (LWP 24448)] [New Thread 0x7fffef02b700 (LWP 24449)] [New Thread 0x7fffee82a700 (LWP 24450)] [Thread 0x7fffef02b700 (LWP 24449) exited] [Thread 0x7fffef82c700 (LWP 24448) exited] [Thread 0x7fffee82a700 (LWP 24450) exited] [Thread 0x7ffff002d700 (LWP 24447) exited] [New Thread 0x7fffee82a700 (LWP 24451)] [New Thread 0x7fffef02b700 (LWP 24452)] [New Thread 0x7fffef82c700 (LWP 24453)] [New Thread 0x7ffff002d700 (LWP 24454)] [Thread 0x7fffef82c700 (LWP 24453) exited] [Thread 0x7fffef02b700 (LWP 24452) exited] [Thread 0x7fffee82a700 (LWP 24451) exited] [Thread 0x7ffff002d700 (LWP 24454) exited] [New Thread 0x7ffff002d700 (LWP 24455)] [New Thread 0x7fffef82c700 (LWP 24456)] [New Thread 0x7fffef02b700 (LWP 24457)] [New Thread 0x7fffee82a700 (LWP 24458)] [Thread 0x7ffff002d700 (LWP 24455) exited] [Thread 0x7fffef02b700 (LWP 24457) exited] [Thread 0x7fffef82c700 (LWP 24456) exited] [Thread 0x7fffee82a700 (LWP 24458) exited] Thread 1 "python2.7" received signal SIGSEGV, Segmentation fault. 0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0 (gdb) bt #0 0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0 #1 0x00007ffff427936f in _wrap_is_bool () from /home/pawel/gnuradio/build/gnuradio-runtime/swig/_pmt_swig.so #2 0x00007ffff7c4ed8b in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #3 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #4 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #5 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #6 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #7 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #8 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #9 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #10 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #11 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #12 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #13 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #14 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #15 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #16 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #17 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #18 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #19 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #20 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #21 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #22 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #23 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #24 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #25 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #26 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #27 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #28 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #29 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #30 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #31 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #32 0x00007ffff7c5439c in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #33 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #34 0x00007ffff7c4e877 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0 #35 0x00007ffff7cc31c2 in run_mod () from /usr/lib/libpython2.7.so.1.0 #36 0x00007ffff7cc326a in PyRun_FileExFlags () from /usr/lib/libpython2.7.so.1.0 #37 0x00007ffff7cc3c92 in PyRun_SimpleFileExFlags () from /usr/lib/libpython2.7.so.1.0 #38 0x00007ffff7cc0dba in Py_Main () from /usr/lib/libpython2.7.so.1.0 #39 0x00007ffff7de1153 in __libc_start_main () from /usr/lib/libc.so.6 #40 0x000055555555505e in _start ()
qa_tag_share_test.sh GNU gdb (GDB) 8.3.1 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-pc-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: . Find the GDB manual and other documentation resources online at: . For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from /usr/bin/python2.7... (No debugging symbols found in /usr/bin/python2.7) Starting program: /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_tag_share.py [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". /usr/lib/../share/gcc-9.2.0/python/libstdcxx/v6/xmethods.py:731: SyntaxWarning: list indices must be integers or slices, not str; perhaps you missed a comma? refcounts = ['_M_refcount']['_M_pi'] [New Thread 0x7ffff004b700 (LWP 24800)] [New Thread 0x7fffef84a700 (LWP 24801)] [New Thread 0x7fffef049700 (LWP 24802)] [New Thread 0x7fffee848700 (LWP 24803)] [Thread 0x7fffee848700 (LWP 24803) exited] [Thread 0x7fffef049700 (LWP 24802) exited] [Thread 0x7fffef84a700 (LWP 24801) exited] [Thread 0x7ffff004b700 (LWP 24800) exited] [New Thread 0x7fffee047700 (LWP 24804)] [Thread 0x7fffee047700 (LWP 24804) exited] Thread 1 "python2.7" received signal SIGSEGV, Segmentation fault. 0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0 (gdb) bt #0 0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0 #1 0x00007ffff427936f in _wrap_is_bool () from /home/pawel/gnuradio/build/gnuradio-runtime/swig/_pmt_swig.so #2 0x00007ffff7c4ed8b in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #3 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #4 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #5 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #6 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #7 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #8 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #9 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #10 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #11 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #12 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #13 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #14 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #15 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #16 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #17 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #18 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #19 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #20 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #21 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #22 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #23 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #24 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #25 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #26 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #27 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #28 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #29 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #30 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #31 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #32 0x00007ffff7c5439c in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #33 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #34 0x00007ffff7c4e877 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0 #35 0x00007ffff7cc31c2 in run_mod () from /usr/lib/libpython2.7.so.1.0 #36 0x00007ffff7cc326a in PyRun_FileExFlags () from /usr/lib/libpython2.7.so.1.0 #37 0x00007ffff7cc3c92 in PyRun_SimpleFileExFlags () from /usr/lib/libpython2.7.so.1.0 #38 0x00007ffff7cc0dba in Py_Main () from /usr/lib/libpython2.7.so.1.0 #39 0x00007ffff7de1153 in __libc_start_main () from /usr/lib/libc.so.6 #40 0x000055555555505e in _start ()
qa_qtgui_test.sh GNU gdb (GDB) 8.3.1 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-pc-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: . Find the GDB manual and other documentation resources online at: . For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from /usr/bin/python2.7... (No debugging symbols found in /usr/bin/python2.7) Starting program: /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-qtgui/python/qtgui/qa_qtgui.py [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". /usr/lib/../share/gcc-9.2.0/python/libstdcxx/v6/xmethods.py:731: SyntaxWarning: list indices must be integers or slices, not str; perhaps you missed a comma? refcounts = ['_M_refcount']['_M_pi'] Program received signal SIGSEGV, Segmentation fault. 0x00007fffef9f86e8 in QMetaObject::className() const () from /usr/lib/libQt5Core.so.5 (gdb) bt #0 0x00007fffef9f86e8 in QMetaObject::className() const () at /usr/lib/libQt5Core.so.5 #1 0x00007ffff04e3cf8 in () at /usr/lib/libQt5Widgets.so.5 #2 0x00007ffff047f997 in () at /usr/lib/libQt5Widgets.so.5 #3 0x00007ffff7fe272a in call_init.part () at /lib64/ld-linux-x86-64.so.2 #4 0x00007ffff7fe2831 in _dl_init () at /lib64/ld-linux-x86-64.so.2 #5 0x00007ffff7fe6603 in dl_open_worker () at /lib64/ld-linux-x86-64.so.2 #6 0x00007ffff7ef3d79 in _dl_catch_exception () at /usr/lib/libc.so.6 #7 0x00007ffff7fe5eee in _dl_open () at /lib64/ld-linux-x86-64.so.2 #8 0x00007ffff7b6d34c in () at /usr/lib/libdl.so.2 #9 0x00007ffff7ef3d79 in _dl_catch_exception () at /usr/lib/libc.so.6 #10 0x00007ffff7ef3e13 in _dl_catch_error () at /usr/lib/libc.so.6 #11 0x00007ffff7b6dab9 in () at /usr/lib/libdl.so.2 #12 0x00007ffff7b6d3da in dlopen () at /usr/lib/libdl.so.2 #13 0x00007ffff7c35384 in _PyImport_GetDynLoadFunc () at /usr/lib/libpython2.7.so.1.0 #14 0x00007ffff7cc54b2 in _PyImport_LoadDynamicModule () at /usr/lib/libpython2.7.so.1.0 #15 0x00007ffff7c3e957 in load_next () at /usr/lib/libpython2.7.so.1.0 #16 0x00007ffff7c3f460 in PyImport_ImportModuleLevel () at /usr/lib/libpython2.7.so.1.0 #17 0x00007ffff7c5a9ea in builtin___import__.lto_priv.0 () at /usr/lib/libpython2.7.so.1.0 #18 0x00007ffff7ca8193 in PyObject_Call () at /usr/lib/libpython2.7.so.1.0 #19 0x00007ffff7c4d662 in PyEval_CallObjectWithKeywords () at /usr/lib/libpython2.7.so.1.0 #20 0x00007ffff7c52205 in PyEval_EvalFrameEx () at /usr/lib/libpython2.7.so.1.0 #21 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () at /usr/lib/libpython2.7.so.1.0 #22 0x00007ffff7c4e877 in PyEval_EvalCode () at /usr/lib/libpython2.7.so.1.0 #23 0x00007ffff7cc6362 in PyImport_ExecCodeModuleEx () at /usr/lib/libpython2.7.so.1.0 #24 0x00007ffff7cc655e in load_source_module () at /usr/lib/libpython2.7.so.1.0 #25 0x00007ffff7cc6c9a in import_submodule.lto_priv () at /usr/lib/libpython2.7.so.1.0 #26 0x00007ffff7c3ea04 in load_next () at /usr/lib/libpython2.7.so.1.0 #27 0x00007ffff7c3f460 in PyImport_ImportModuleLevel () at /usr/lib/libpython2.7.so.1.0 #28 0x00007ffff7c5a9ea in builtin___import__.lto_priv.0 () at /usr/lib/libpython2.7.so.1.0 #29 0x00007ffff7ca8193 in PyObject_Call () at /usr/lib/libpython2.7.so.1.0 #30 0x00007ffff7c4d662 in PyEval_CallObjectWithKeywords () at /usr/lib/libpython2.7.so.1.0 #31 0x00007ffff7c52205 in PyEval_EvalFrameEx () at /usr/lib/libpython2.7.so.1.0 #32 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () at /usr/lib/libpython2.7.so.1.0 #33 0x00007ffff7c4e877 in PyEval_EvalCode () at /usr/lib/libpython2.7.so.1.0 #34 0x00007ffff7cc6362 in PyImport_ExecCodeModuleEx () at /usr/lib/libpython2.7.so.1.0 #35 0x00007ffff7cc67c7 in load_compiled_module () at /usr/lib/libpython2.7.so.1.0 #36 0x00007ffff7cc6f63 in load_package () at /usr/lib/libpython2.7.so.1.0 #37 0x00007ffff7cc6c9a in import_submodule.lto_priv () at /usr/lib/libpython2.7.so.1.0 #38 0x00007ffff7cc567a in ensure_fromlist.part.0.lto_priv () at /usr/lib/libpython2.7.so.1.0 #39 0x00007ffff7c3f704 in PyImport_ImportModuleLevel () at /usr/lib/libpython2.7.so.1.0 #40 0x00007ffff7c5a9ea in builtin___import__.lto_priv.0 () at /usr/lib/libpython2.7.so.1.0 #41 0x00007ffff7ca8193 in PyObject_Call () at /usr/lib/libpython2.7.so.1.0 #42 0x00007ffff7c4d662 in PyEval_CallObjectWithKeywords () at /usr/lib/libpython2.7.so.1.0 #43 0x00007ffff7c52205 in PyEval_EvalFrameEx () at /usr/lib/libpython2.7.so.1.0 #44 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () at /usr/lib/libpython2.7.so.1.0 #45 0x00007ffff7c4e877 in PyEval_EvalCode () at /usr/lib/libpython2.7.so.1.0 #46 0x00007ffff7cc31c2 in run_mod () at /usr/lib/libpython2.7.so.1.0 #47 0x00007ffff7cc326a in PyRun_FileExFlags () at /usr/lib/libpython2.7.so.1.0 #48 0x00007ffff7cc3c92 in PyRun_SimpleFileExFlags () at /usr/lib/libpython2.7.so.1.0 #49 0x00007ffff7cc0dba in Py_Main () at /usr/lib/libpython2.7.so.1.0 #50 0x00007ffff7de1153 in __libc_start_main () at /usr/lib/libc.so.6 #51 0x000055555555505e in _start ()
velichkov commented 4 years ago

qa_skipahead_test.sh:

Thread 1 "python2.7" received signal SIGSEGV, Segmentation fault.
0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr<pmt::pmt_base>) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0
(gdb) bt
#0  0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr<pmt::pmt_base>) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0
#1  0x00007ffff427936f in _wrap_is_bool () from /home/pawel/gnuradio/build/gnuradio-runtime/swig/_pmt_swig.so
#2  0x00007ffff7c4ed8b in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0

No file names and line numbers unfortunately. Could you do a clean rebuild with -DCMAKE_BUILD_TYPE=RelWithDebInfo and then take again a backtrace.

qa_tag_share_test.sh:

Thread 1 "python2.7" received signal SIGSEGV, Segmentation fault.
0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr<pmt::pmt_base>) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0
(gdb) bt
#0  0x00007ffff6e3ea96 in pmt::is_bool(boost::intrusive_ptr<pmt::pmt_base>) () from /home/pawel/gnuradio/build/gnuradio-runtime/lib/pmt/libgnuradio-pmt-3.7.13.5.so.0.0.0
#1  0x00007ffff427936f in _wrap_is_bool () from /home/pawel/gnuradio/build/gnuradio-runtime/swig/_pmt_swig.so

It's similar to the above one.

qa_qtgui_test.sh:

Program received signal SIGSEGV, Segmentation fault.
0x00007fffef9f86e8 in QMetaObject::className() const () from /usr/lib/libQt5Core.so.5
(gdb) bt
#0  0x00007fffef9f86e8 in QMetaObject::className() const () at /usr/lib/libQt5Core.so.5
#1  0x00007ffff04e3cf8 in  () at /usr/lib/libQt5Widgets.so.5
#2  0x00007ffff047f997 in  () at /usr/lib/libQt5Widgets.so.5

Could you install the Qt5 debug info package/symobls and then take again a backtrace. I'm not familiar with Arch/Manjaro linux and I don't know exactly how to do it.

On fedora you could install the debug info with sudo debuginfo-install qt5-qtbase-devel and that installs the qt5-qtbase-devel-debuginfo package.

lusiaold commented 4 years ago

Oh, I thought this version of GNU Radio uses PyQt4? I have PyQt4 installed for Python 2.7, but I didn't install PyQt5. I'll try to do that first

lusiaold commented 4 years ago

Well, it crashes anyways, so I'll do what you wrote

lusiaold commented 4 years ago

Done, but unfortunately there are no debug packages in Arch/Manjaro repositories

qa_skiphead_test.sh GNU gdb (GDB) 8.3.1 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-pc-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: . Find the GDB manual and other documentation resources online at: . For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from /usr/bin/python2.7... (No debugging symbols found in /usr/bin/python2.7) Starting program: /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_skiphead.py [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". /root/.gnuradio/prefs/vmcircbuf_default_factory: No such file or directory vmcircbuf_createfilemapping: createfilemapping is not available [New Thread 0x7ffff0387700 (LWP 14476)] [New Thread 0x7fffefb86700 (LWP 14477)] [New Thread 0x7fffef385700 (LWP 14478)] [New Thread 0x7fffeeb44700 (LWP 14479)] [Thread 0x7ffff0387700 (LWP 14476) exited] [Thread 0x7fffefb86700 (LWP 14477) exited] [Thread 0x7fffef385700 (LWP 14478) exited] [Thread 0x7fffeeb44700 (LWP 14479) exited] [New Thread 0x7fffeeb44700 (LWP 14480)] [New Thread 0x7fffef385700 (LWP 14481)] [New Thread 0x7fffefb86700 (LWP 14482)] [New Thread 0x7ffff0387700 (LWP 14483)] [Thread 0x7fffeeb44700 (LWP 14480) exited] [Thread 0x7fffefb86700 (LWP 14482) exited] [Thread 0x7fffef385700 (LWP 14481) exited] [Thread 0x7ffff0387700 (LWP 14483) exited] [New Thread 0x7ffff0387700 (LWP 14484)] [New Thread 0x7fffefb86700 (LWP 14485)] [New Thread 0x7fffef385700 (LWP 14486)] [New Thread 0x7fffeeb44700 (LWP 14487)] [Thread 0x7ffff0387700 (LWP 14484) exited] [Thread 0x7fffef385700 (LWP 14486) exited] [Thread 0x7fffefb86700 (LWP 14485) exited] [Thread 0x7fffeeb44700 (LWP 14487) exited] [New Thread 0x7fffeeb44700 (LWP 14488)] [New Thread 0x7fffef385700 (LWP 14489)] [New Thread 0x7fffefb86700 (LWP 14490)] [New Thread 0x7ffff0387700 (LWP 14491)] [Thread 0x7fffefb86700 (LWP 14490) exited] [Thread 0x7fffef385700 (LWP 14489) exited] [Thread 0x7ffff0387700 (LWP 14491) exited] [Thread 0x7fffeeb44700 (LWP 14488) exited] [New Thread 0x7ffff0387700 (LWP 14492)] [New Thread 0x7fffefb86700 (LWP 14493)] [New Thread 0x7fffef385700 (LWP 14494)] [New Thread 0x7fffeeb44700 (LWP 14495)] [Thread 0x7fffef385700 (LWP 14494) exited] [Thread 0x7fffefb86700 (LWP 14493) exited] [Thread 0x7ffff0387700 (LWP 14492) exited] [Thread 0x7fffeeb44700 (LWP 14495) exited] [New Thread 0x7fffeeb44700 (LWP 14496)] [New Thread 0x7fffef385700 (LWP 14497)] [New Thread 0x7fffefb86700 (LWP 14498)] [New Thread 0x7ffff0387700 (LWP 14499)] [Thread 0x7fffefb86700 (LWP 14498) exited] [Thread 0x7fffef385700 (LWP 14497) exited] [Thread 0x7fffeeb44700 (LWP 14496) exited] [Thread 0x7ffff0387700 (LWP 14499) exited] [New Thread 0x7ffff0387700 (LWP 14500)] [New Thread 0x7fffefb86700 (LWP 14501)] [New Thread 0x7fffef385700 (LWP 14502)] [New Thread 0x7fffeeb44700 (LWP 14504)] [Thread 0x7ffff0387700 (LWP 14500) exited] [Thread 0x7fffefb86700 (LWP 14501) exited] [Thread 0x7fffef385700 (LWP 14502) exited] [Thread 0x7fffeeb44700 (LWP 14504) exited] Thread 1 "python2.7" received signal SIGSEGV, Segmentation fault. 0x00007ffff6e67ca6 in pmt::is_bool (obj=...) at /home/pawel/gnuradio/gnuradio-runtime/lib/pmt/pmt.cc:179 179 bool is_bool(pmt_t obj) { return obj->is_bool(); } (gdb) bt #0 0x00007ffff6e67ca6 in pmt::is_bool (obj=...) at /home/pawel/gnuradio/gnuradio-runtime/lib/pmt/pmt.cc:179 #1 0x00007ffff43d8771 in _wrap_is_bool (args=, kwargs=) at /usr/include/boost/smart_ptr/intrusive_ptr.hpp:91 #2 0x00007ffff7c4ed8b in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #3 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #4 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #5 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #6 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #7 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #8 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #9 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #10 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #11 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #12 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #13 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #14 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #15 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #16 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #17 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #18 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #19 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #20 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #21 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #22 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #23 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #24 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #25 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #26 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #27 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #28 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #29 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #30 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #31 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #32 0x00007ffff7c5439c in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #33 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #34 0x00007ffff7c4e877 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0 #35 0x00007ffff7cc31c2 in run_mod () from /usr/lib/libpython2.7.so.1.0 #36 0x00007ffff7cc326a in PyRun_FileExFlags () from /usr/lib/libpython2.7.so.1.0 #37 0x00007ffff7cc3c92 in PyRun_SimpleFileExFlags () from /usr/lib/libpython2.7.so.1.0 #38 0x00007ffff7cc0dba in Py_Main () from /usr/lib/libpython2.7.so.1.0 #39 0x00007ffff7de1153 in __libc_start_main () from /usr/lib/libc.so.6 #40 0x000055555555505e in _start ()
qa_tag_share_test.sh GNU gdb (GDB) 8.3.1 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-pc-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: . Find the GDB manual and other documentation resources online at: . For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from /usr/bin/python2.7... (No debugging symbols found in /usr/bin/python2.7) Starting program: /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-blocks/python/blocks/qa_tag_share.py [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". [New Thread 0x7ffff0355700 (LWP 14712)] [New Thread 0x7fffefb54700 (LWP 14713)] [New Thread 0x7fffef353700 (LWP 14714)] [New Thread 0x7fffeeb52700 (LWP 14715)] [Thread 0x7fffef353700 (LWP 14714) exited] [Thread 0x7fffeeb52700 (LWP 14715) exited] [Thread 0x7fffefb54700 (LWP 14713) exited] [Thread 0x7ffff0355700 (LWP 14712) exited] [New Thread 0x7fffee351700 (LWP 14716)] [Thread 0x7fffee351700 (LWP 14716) exited] Thread 1 "python2.7" received signal SIGSEGV, Segmentation fault. 0x00007ffff6e67ca6 in pmt::is_bool (obj=...) at /home/pawel/gnuradio/gnuradio-runtime/lib/pmt/pmt.cc:179 179 bool is_bool(pmt_t obj) { return obj->is_bool(); } (gdb) bt #0 0x00007ffff6e67ca6 in pmt::is_bool (obj=...) at /home/pawel/gnuradio/gnuradio-runtime/lib/pmt/pmt.cc:179 #1 0x00007ffff43d8771 in _wrap_is_bool (args=, kwargs=) at /usr/include/boost/smart_ptr/intrusive_ptr.hpp:91 #2 0x00007ffff7c4ed8b in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #3 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #4 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #5 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #6 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #7 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #8 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #9 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #10 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #11 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #12 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #13 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #14 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #15 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #16 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #17 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #18 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #19 0x00007ffff7c999a4 in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #20 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #21 0x00007ffff7c4f758 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #22 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #23 0x00007ffff7c997dc in function_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #24 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #25 0x00007ffff7ca33d7 in instancemethod_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #26 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #27 0x00007ffff7c6bfa9 in slot_tp_call.lto_priv () from /usr/lib/libpython2.7.so.1.0 #28 0x00007ffff7ca8193 in PyObject_Call () from /usr/lib/libpython2.7.so.1.0 #29 0x00007ffff7c5421e in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #30 0x00007ffff7c4f150 in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #31 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #32 0x00007ffff7c5439c in PyEval_EvalFrameEx () from /usr/lib/libpython2.7.so.1.0 #33 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () from /usr/lib/libpython2.7.so.1.0 #34 0x00007ffff7c4e877 in PyEval_EvalCode () from /usr/lib/libpython2.7.so.1.0 #35 0x00007ffff7cc31c2 in run_mod () from /usr/lib/libpython2.7.so.1.0 #36 0x00007ffff7cc326a in PyRun_FileExFlags () from /usr/lib/libpython2.7.so.1.0 #37 0x00007ffff7cc3c92 in PyRun_SimpleFileExFlags () from /usr/lib/libpython2.7.so.1.0 #38 0x00007ffff7cc0dba in Py_Main () from /usr/lib/libpython2.7.so.1.0 #39 0x00007ffff7de1153 in __libc_start_main () from /usr/lib/libc.so.6 #40 0x000055555555505e in _start ()
qa_qtgui_test.sh GNU gdb (GDB) 8.3.1 Copyright (C) 2019 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-pc-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: . Find the GDB manual and other documentation resources online at: . For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from /usr/bin/python2.7... (No debugging symbols found in /usr/bin/python2.7) Starting program: /usr/bin/python2.7 -B /home/pawel/gnuradio/gr-qtgui/python/qtgui/qa_qtgui.py [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". /usr/lib/../share/gcc-9.2.0/python/libstdcxx/v6/xmethods.py:731: SyntaxWarning: list indices must be integers or slices, not str; perhaps you missed a comma? refcounts = ['_M_refcount']['_M_pi'] Program received signal SIGSEGV, Segmentation fault. 0x00007fffefb926e8 in QMetaObject::className() const () from /usr/lib/libQt5Core.so.5 (gdb) bt #0 0x00007fffefb926e8 in QMetaObject::className() const () at /usr/lib/libQt5Core.so.5 #1 0x00007ffff067dcf8 in () at /usr/lib/libQt5Widgets.so.5 #2 0x00007ffff0619997 in () at /usr/lib/libQt5Widgets.so.5 #3 0x00007ffff7fe272a in call_init.part () at /lib64/ld-linux-x86-64.so.2 #4 0x00007ffff7fe2831 in _dl_init () at /lib64/ld-linux-x86-64.so.2 #5 0x00007ffff7fe6603 in dl_open_worker () at /lib64/ld-linux-x86-64.so.2 #6 0x00007ffff7ef3d79 in _dl_catch_exception () at /usr/lib/libc.so.6 #7 0x00007ffff7fe5eee in _dl_open () at /lib64/ld-linux-x86-64.so.2 #8 0x00007ffff7b6d34c in () at /usr/lib/libdl.so.2 #9 0x00007ffff7ef3d79 in _dl_catch_exception () at /usr/lib/libc.so.6 #10 0x00007ffff7ef3e13 in _dl_catch_error () at /usr/lib/libc.so.6 #11 0x00007ffff7b6dab9 in () at /usr/lib/libdl.so.2 #12 0x00007ffff7b6d3da in dlopen () at /usr/lib/libdl.so.2 #13 0x00007ffff7c35384 in _PyImport_GetDynLoadFunc () at /usr/lib/libpython2.7.so.1.0 #14 0x00007ffff7cc54b2 in _PyImport_LoadDynamicModule () at /usr/lib/libpython2.7.so.1.0 #15 0x00007ffff7c3e957 in load_next () at /usr/lib/libpython2.7.so.1.0 #16 0x00007ffff7c3f460 in PyImport_ImportModuleLevel () at /usr/lib/libpython2.7.so.1.0 #17 0x00007ffff7c5a9ea in builtin___import__.lto_priv.0 () at /usr/lib/libpython2.7.so.1.0 #18 0x00007ffff7ca8193 in PyObject_Call () at /usr/lib/libpython2.7.so.1.0 #19 0x00007ffff7c4d662 in PyEval_CallObjectWithKeywords () at /usr/lib/libpython2.7.so.1.0 #20 0x00007ffff7c52205 in PyEval_EvalFrameEx () at /usr/lib/libpython2.7.so.1.0 #21 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () at /usr/lib/libpython2.7.so.1.0 #22 0x00007ffff7c4e877 in PyEval_EvalCode () at /usr/lib/libpython2.7.so.1.0 #23 0x00007ffff7cc6362 in PyImport_ExecCodeModuleEx () at /usr/lib/libpython2.7.so.1.0 #24 0x00007ffff7cc655e in load_source_module () at /usr/lib/libpython2.7.so.1.0 #25 0x00007ffff7cc6c9a in import_submodule.lto_priv () at /usr/lib/libpython2.7.so.1.0 #26 0x00007ffff7c3ea04 in load_next () at /usr/lib/libpython2.7.so.1.0 #27 0x00007ffff7c3f460 in PyImport_ImportModuleLevel () at /usr/lib/libpython2.7.so.1.0 #28 0x00007ffff7c5a9ea in builtin___import__.lto_priv.0 () at /usr/lib/libpython2.7.so.1.0 #29 0x00007ffff7ca8193 in PyObject_Call () at /usr/lib/libpython2.7.so.1.0 #30 0x00007ffff7c4d662 in PyEval_CallObjectWithKeywords () at /usr/lib/libpython2.7.so.1.0 #31 0x00007ffff7c52205 in PyEval_EvalFrameEx () at /usr/lib/libpython2.7.so.1.0 #32 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () at /usr/lib/libpython2.7.so.1.0 #33 0x00007ffff7c4e877 in PyEval_EvalCode () at /usr/lib/libpython2.7.so.1.0 #34 0x00007ffff7cc6362 in PyImport_ExecCodeModuleEx () at /usr/lib/libpython2.7.so.1.0 #35 0x00007ffff7cc67c7 in load_compiled_module () at /usr/lib/libpython2.7.so.1.0 #36 0x00007ffff7cc6f63 in load_package () at /usr/lib/libpython2.7.so.1.0 #37 0x00007ffff7cc6c9a in import_submodule.lto_priv () at /usr/lib/libpython2.7.so.1.0 #38 0x00007ffff7cc567a in ensure_fromlist.part.0.lto_priv () at /usr/lib/libpython2.7.so.1.0 #39 0x00007ffff7c3f704 in PyImport_ImportModuleLevel () at /usr/lib/libpython2.7.so.1.0 #40 0x00007ffff7c5a9ea in builtin___import__.lto_priv.0 () at /usr/lib/libpython2.7.so.1.0 #41 0x00007ffff7ca8193 in PyObject_Call () at /usr/lib/libpython2.7.so.1.0 #42 0x00007ffff7c4d662 in PyEval_CallObjectWithKeywords () at /usr/lib/libpython2.7.so.1.0 #43 0x00007ffff7c52205 in PyEval_EvalFrameEx () at /usr/lib/libpython2.7.so.1.0 #44 0x00007ffff7c4d9c6 in PyEval_EvalCodeEx () at /usr/lib/libpython2.7.so.1.0 #45 0x00007ffff7c4e877 in PyEval_EvalCode () at /usr/lib/libpython2.7.so.1.0 #46 0x00007ffff7cc31c2 in run_mod () at /usr/lib/libpython2.7.so.1.0 #47 0x00007ffff7cc326a in PyRun_FileExFlags () at /usr/lib/libpython2.7.so.1.0 #48 0x00007ffff7cc3c92 in PyRun_SimpleFileExFlags () at /usr/lib/libpython2.7.so.1.0 #49 0x00007ffff7cc0dba in Py_Main () at /usr/lib/libpython2.7.so.1.0 #50 0x00007ffff7de1153 in __libc_start_main () at /usr/lib/libc.so.6 #51 0x000055555555505e in _start ()
velichkov commented 4 years ago

Would it be possible to reformat your posts and use <details><summary> blocks as these long backtrackes make the discussion hard to follow

<details>
  <summary>Click to expand</summary>
  whatever
</details>

unfortunately there are no debug packages in Arch/Manjaro repositories

See:

lusiaold commented 4 years ago

Okay, I reformatted my posts, sorry for the trouble. I'll read articles you linked and I'll try to install debug packages (weirdly, when I was looking for Qt debug package with my AUR helper, it didn't come up, so I thought it just wasn't present)

velichkov commented 4 years ago

Hi @PawelPleskaczynski,

I reformatted my posts, sorry for the trouble.

Thanks.

I was able to reproduce the failure in qa_skiphead and qa_tag_share tests, and applying d6e217cbc00ec0333ba030ab2d84c31b7dbb77d5 on maint-3.7 branch resolve the problem.

git cherry-pick d6e217cbc00ec0333ba030ab2d84c31b7dbb77d5

I thought this version of GNU Radio uses PyQt4?

I don't know. I'm not able to reproduce the failure in qa_qtgui_test :(, on my system this test seems to not load this libQt5Widgets.so.5 library.

lusiaold commented 4 years ago

Hi @velichkov, I'll try to apply this commit tomorrow and I'll let you know if it helped to solve these two failed tests. I'm not sure about the Qt failure though, maybe there's something wrong with my Linux installation? I'll try it on a different system in a VM. Anyways, thank you very much for your help!

lusiaold commented 4 years ago

Hi @velichkov, I managed to successfully build GNU Radio with GRC from source in Kubuntu. Everything works well, including Qt GUI, and 99% of the tests were passed. qa_zeromq_pub, qa_zeromq_pubsub, qa_zeromq_pushpull, qa_zeromq_reqrep and qa_zeromq_sub failed, but it doesn't seem to mess with program's behavior, at least for my usage. It seems that I had to overlook installation of some dependencies on my main Manjaro Linux installation. Thank you very much for help, I think this issue can be closed