2018-03-15 15:21:05 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-07-03 17:05:01 +10:00
|
|
|
#include "job/queue.hpp"
|
|
|
|
#include "tap.hpp"
|
|
|
|
|
2018-03-15 15:21:05 +11:00
|
|
|
#include <chrono>
|
2017-07-03 17:05:01 +10:00
|
|
|
|
2018-03-15 15:21:05 +11:00
|
|
|
#include <iostream>
|
|
|
|
|
2018-03-22 14:59:03 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
void sleep_inc (std::atomic<int> &count) noexcept
|
|
|
|
{
|
|
|
|
++count;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-15 15:21:05 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-07-03 17:05:01 +10:00
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
util::TAP::logger tap;
|
|
|
|
|
|
|
|
// dispatch `INNER' simple jobs `OUTTER' times that simply increment an
|
|
|
|
// atomic variable and quit. this tests that all threads are created,
|
|
|
|
// executed, and finished. it's not definitive, but executing this many
|
|
|
|
// items this many times seems reasonably reliable in exposing deadlocks.
|
|
|
|
bool success = true;
|
2018-03-22 14:59:03 +11:00
|
|
|
constexpr int OUTTER = 4;
|
|
|
|
constexpr int INNER = 1<<10;
|
2017-07-03 17:05:01 +10:00
|
|
|
|
|
|
|
for (auto i = 0; i < OUTTER && success; ++i) {
|
|
|
|
std::atomic<int> count = 0;
|
|
|
|
|
|
|
|
{
|
2018-03-22 14:59:03 +11:00
|
|
|
util::job::queue q {std::thread::hardware_concurrency (), INNER};
|
2018-03-15 15:21:05 +11:00
|
|
|
std::vector<util::job::queue::cookie> cookies;
|
|
|
|
for (int j = 0; j < INNER; ++j) {
|
|
|
|
cookies.push_back (
|
2018-03-22 14:59:03 +11:00
|
|
|
q.submit (
|
|
|
|
sleep_inc,
|
|
|
|
std::ref (count)
|
|
|
|
)
|
2018-03-15 15:21:05 +11:00
|
|
|
);
|
|
|
|
}
|
2017-07-03 17:05:01 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
success = count == INNER && success;
|
|
|
|
}
|
|
|
|
|
2018-03-22 14:59:03 +11:00
|
|
|
tap.expect (success, "%! trivial increment jobs of size %!", OUTTER, INNER);
|
2017-07-03 17:05:01 +10:00
|
|
|
return tap.status ();
|
|
|
|
}
|