Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-02-17 14:54:44 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-03-16 13:21:43 +0300
commit5558cb7bc5f3a74589e579e8504f76cde117bb03 (patch)
treeba669539fda8e4f1c88bca65d33915443dfc07ca /test
parent8be8465fbc3a3f79f813210052501d8837d18d83 (diff)
more wip
Diffstat (limited to 'test')
-rw-r--r--test/tests/dynamic_thread_pool_group.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/test/tests/dynamic_thread_pool_group.cpp b/test/tests/dynamic_thread_pool_group.cpp
index dfc46e9a..4989c585 100644
--- a/test/tests/dynamic_thread_pool_group.cpp
+++ b/test/tests/dynamic_thread_pool_group.cpp
@@ -191,15 +191,12 @@ static inline void TestDynamicThreadPoolGroupWorks()
}
std::cout << "Maximum concurrency achieved with " << workitems.size() << " work items = " << shared_state.max_concurrency << "\n" << std::endl;
};
- auto print_exception_throw = llfio::make_scope_fail([]() noexcept {
- std::cout << "NOTE: Exception throw occurred!" << std::endl;
- });
+ auto print_exception_throw = llfio::make_scope_fail([]() noexcept { std::cout << "NOTE: Exception throw occurred!" << std::endl; });
// Test a single work item
reset(1);
submit();
check();
- exit(0);
// Test 10 work items
reset(10);
@@ -305,7 +302,7 @@ static inline void TestDynamicThreadPoolGroupNestingWorks()
}
uint64_t idx = std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now().time_since_epoch()).count();
std::lock_guard<std::mutex> g(shared_states[nesting].lock);
- //std::cout << "wi " << this << " nesting " << nesting << " work " << work << std::endl;
+ // std::cout << "wi " << this << " nesting " << nesting << " work " << work << std::endl;
if(COUNT_PER_WORK_ITEM == work && childwi)
{
if(!shared_states[nesting].tpg)
@@ -449,5 +446,5 @@ KERNELTEST_TEST_KERNEL(integration, llfio, dynamic_thread_pool_group, works, "Te
TestDynamicThreadPoolGroupWorks())
KERNELTEST_TEST_KERNEL(integration, llfio, dynamic_thread_pool_group, nested, "Tests that nesting of llfio::dynamic_thread_pool_group works as expected",
TestDynamicThreadPoolGroupNestingWorks())
-//KERNELTEST_TEST_KERNEL(integration, llfio, dynamic_thread_pool_group, io_aware_work_item,
+// KERNELTEST_TEST_KERNEL(integration, llfio, dynamic_thread_pool_group, io_aware_work_item,
// "Tests that llfio::dynamic_thread_pool_group::io_aware_work_item works as expected", TestDynamicThreadPoolGroupIoAwareWorks())