aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-07-24 15:21:31 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-07-24 20:02:07 +0000
commitb323a5ed1f26a5b8e4e9f8f78225bdf95dc5a177 (patch)
tree6015edd7fae15488eaaa05a570499adf4d3e3bb3 /dm
parent019ff27ac0167026f9f8f4aaec8fb6461d8ba21e (diff)
sprinkle more tracing in GM, tests, and ok, and add TRACE_FUNC
Change-Id: I562d438bd65e9fd900cfc6831f971b4af25c8ae6 Reviewed-on: https://skia-review.googlesource.com/26361 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Mike Klein <mtklein@chromium.org>
Diffstat (limited to 'dm')
-rw-r--r--dm/DM.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/dm/DM.cpp b/dm/DM.cpp
index e8898a4c95..1b8888935b 100644
--- a/dm/DM.cpp
+++ b/dm/DM.cpp
@@ -1256,7 +1256,7 @@ static void run_test(skiatest::Test test, const GrContextOptions& grCtxOptions)
if (!FLAGS_dryRun && !is_blacklisted("_", "tests", "_", test.name)) {
start("unit", "test", "", test.name);
GrContextFactory factory(grCtxOptions);
- test.proc(&reporter, &factory);
+ test.run(&reporter, &factory);
}
done("unit", "test", "", test.name);
}