On Thu, Jun 16, 2016 at 8:48 PM, Dave NotTelling <dmp250...@gmail.com>
wrote:

>      The radio is released properly when the destructor is called, but
> it's not getting called for some reason.  I have several C++ tests that
> work like a champ, but the Python test doesn't actually release the
> resources that were allocated.  I even tried assigning my block that talks
> to the radio to a variable in self (self.radio) and then setting it to None
> in the tearDown method.  The resources still are not released.  If I stop a
> GNU Radio flow graph that uses my block then everything is released just
> fine.  Even when the Python test finishes (after the second run) the
> resources are released.  It's just that the resources are not released
> between the back to back runs of the same test.
>

Well, if your test involves a flow graph then make sure you're (stopping
and) discarding any references to the flow graph as well, since that will
hold onto the block.

Can you share your Python code?
_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to