Skip to content

Commit

Permalink
Reduce iterations count for some tests (5)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Aug 16, 2017
1 parent 84cdf93 commit 9adc077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Chapter05/04_work_queue/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class work_queue {
work_queue g_queue;

void some_task();
const std::size_t tests_tasks_count = 1500 /*000*/;
const std::size_t tests_tasks_count = 300 /*0000*/;

void pusher() {
for (std::size_t i = 0; i < tests_tasks_count; ++i) {
Expand Down

0 comments on commit 9adc077

Please sign in to comment.