From 36ea6c81c2a249ef344d438943050ec960631f0d Mon Sep 17 00:00:00 2001 From: mtklein Date: Tue, 5 Aug 2014 07:19:46 -0700 Subject: [PATCH] For some reason, starting tests before gms makes DM run much faster. Must be getting the path ops tests going early helps? On my desktop, Release: 50s -> 24s Debug: 62s -> 40s BUG=skia: R=bsalomon@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/435423003 --- dm/DM.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dm/DM.cpp b/dm/DM.cpp index 76dc414..6256d0d 100644 --- a/dm/DM.cpp +++ b/dm/DM.cpp @@ -234,8 +234,8 @@ int dm_main() { gms.count(), configs.count(), tests.count(), skps.count()); DM::Reporter reporter; DM::TaskRunner tasks(FLAGS_threads, FLAGS_gpuThreads); - kick_off_gms(gms, configs, gpuAPI, *expectations, &reporter, &tasks); kick_off_tests(tests, &reporter, &tasks); + kick_off_gms(gms, configs, gpuAPI, *expectations, &reporter, &tasks); kick_off_skps(skps, &reporter, &tasks); tasks.wait(); -- 2.7.4