call byte_buffer cleanup in two enb tests and fix typo

master
Andre Puschmann 5 years ago
parent c54fa568be
commit 0bd493b567

@ -25,7 +25,7 @@
class thread_test : public thread class thread_test : public thread
{ {
public: public:
thread_test() : thread("Threat Test") {} thread_test() : thread("Thread Test") {}
protected: protected:
void run_thread() override { std::cout << "Hello world!" << std::endl; } void run_thread() override { std::cout << "Hello world!" << std::endl; }

@ -119,5 +119,7 @@ int main(int argc, char** argv)
printf("\nSuccess\n"); printf("\nSuccess\n");
return 0; srslte::byte_buffer_pool::get_instance()->cleanup();
return SRSLTE_SUCCESS;
} }

@ -388,5 +388,7 @@ int main(int argc, char** argv)
printf("\nSuccess\n"); printf("\nSuccess\n");
return 0; srslte::byte_buffer_pool::get_instance()->cleanup();
return SRSLTE_SUCCESS;
} }
Loading…
Cancel
Save