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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/test')
-rw-r--r--intern/cycles/test/util_task_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/cycles/test/util_task_test.cpp b/intern/cycles/test/util_task_test.cpp
index e2860d8f8db..2268206b214 100644
--- a/intern/cycles/test/util_task_test.cpp
+++ b/intern/cycles/test/util_task_test.cpp
@@ -30,7 +30,7 @@ void task_run() {
TEST(util_task, basic) {
TaskScheduler::init(0);
TaskPool pool;
- for (int i = 0; i < 100; ++i) {
+ for(int i = 0; i < 100; ++i) {
pool.push(function_bind(task_run));
}
TaskPool::Summary summary;
@@ -40,10 +40,10 @@ TEST(util_task, basic) {
}
TEST(util_task, multiple_times) {
- for (int N = 0; N < 1000; ++N) {
+ for(int N = 0; N < 1000; ++N) {
TaskScheduler::init(0);
TaskPool pool;
- for (int i = 0; i < 100; ++i) {
+ for(int i = 0; i < 100; ++i) {
pool.push(function_bind(task_run));
}
TaskPool::Summary summary;