diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-13 16:59:21 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-08-13 16:59:21 +0000 |
commit | 62e41903a70e0bebf875cd0fa5c94f804fad582a (patch) | |
tree | d9e98c02000e23a7b03d889a77ca7ac81e10ebc6 | |
parent | 92967e9677ac0416c9c858ed19e4883aa1726046 (diff) |
Reduce path_copy iteration count, hopefully allows nexus s bot to complete without OOM.
git-svn-id: http://skia.googlecode.com/svn/trunk@5064 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r-- | bench/PathBench.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/PathBench.cpp b/bench/PathBench.cpp index f3330e42d4..faacf40b7d 100644 --- a/bench/PathBench.cpp +++ b/bench/PathBench.cpp @@ -361,7 +361,7 @@ public: } protected: - enum { N = SkBENCHLOOP(50000) }; + enum { N = SkBENCHLOOP(30000) }; virtual const char* onGetName() SK_OVERRIDE { return "path_copy"; |