aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/BlurRoundRectBench.cpp
diff options
context:
space:
mode:
authorGravatar jcgregorio <jcgregorio@google.com>2016-08-29 13:33:04 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-29 13:33:04 -0700
commit1703bd18acd24bc42883b2fcd251bc75a7382d67 (patch)
treeb58be254f3ac9208e2334ebe426614079e3884f0 /bench/BlurRoundRectBench.cpp
parent3cc22180561ae17a64ff0e0f9ba173eac149009e (diff)
benchmarks: Avoid brackets and commas in test names.
Diffstat (limited to 'bench/BlurRoundRectBench.cpp')
-rw-r--r--bench/BlurRoundRectBench.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/BlurRoundRectBench.cpp b/bench/BlurRoundRectBench.cpp
index ef88422e3c..713996c0ca 100644
--- a/bench/BlurRoundRectBench.cpp
+++ b/bench/BlurRoundRectBench.cpp
@@ -25,7 +25,7 @@ class BlurRoundRectBench : public Benchmark {
public:
BlurRoundRectBench(int width, int height, int cornerRadius)
: fName("blurroundrect") {
- fName.appendf("_WH[%ix%i]_cr[%i]", width, height, cornerRadius);
+ fName.appendf("_WH_%ix%i_cr_%i", width, height, cornerRadius);
SkRect r = SkRect::MakeWH(SkIntToScalar(width), SkIntToScalar(height));
fRRect.setRectXY(r, SkIntToScalar(cornerRadius), SkIntToScalar(cornerRadius));
}