uhd/host/tests/tasks_test.cpp
Martin Braun ae5211d71d uhd: Update license headers
All copyright is now attributed to "Ettus Research, a National
Instruments company".

SPDX headers were also updated to latest version 3.0.
2018-02-19 16:54:52 -08:00

28 lines
658 B
C++

//
// Copyright 2010-2011 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <boost/test/unit_test.hpp>
#include <uhd/utils/tasks.hpp>
#include <thread>
#include <chrono>
#include <vector>
#include <iostream>
void test_tasks_sleep(size_t usecs)
{
std::this_thread::sleep_for(std::chrono::milliseconds(usecs));
}
BOOST_AUTO_TEST_CASE(tasks_test) {
static const size_t N_TASKS = 100;
std::vector<uhd::task::sptr> test_vec;
for (size_t i = 0; i < N_TASKS; i++) {
test_vec.push_back(uhd::task::make([i](){ test_tasks_sleep(i); }));
}
}