diff options
author | oliver@apple.com <oliver@apple.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2008-07-03 06:40:00 +0000 |
---|---|---|
committer | oliver@apple.com <oliver@apple.com@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2008-07-03 06:40:00 +0000 |
commit | ff347f900fd7bddf8b581a8a16e52d5953d18a39 (patch) | |
tree | 8ed9269e305504c824a73af26b88b2eb5a121fbe /third_party/WebKit/LayoutTests/fast/canvas/canvas-longlived-context.js | |
parent | 158dadc36bb2918f5d54cf4f33675d513ebf6201 (diff) | |
download | chromium_src-ff347f900fd7bddf8b581a8a16e52d5953d18a39.zip chromium_src-ff347f900fd7bddf8b581a8a16e52d5953d18a39.tar.gz chromium_src-ff347f900fd7bddf8b581a8a16e52d5953d18a39.tar.bz2 |
Reduce test runtime to avoid timeout on slow hardware with debug builds.
RS=Mark Rowe
git-svn-id: svn://svn.chromium.org/blink/trunk@34973 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/LayoutTests/fast/canvas/canvas-longlived-context.js')
-rw-r--r-- | third_party/WebKit/LayoutTests/fast/canvas/canvas-longlived-context.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-longlived-context.js b/third_party/WebKit/LayoutTests/fast/canvas/canvas-longlived-context.js index 45a1bdb..4f059b4 100644 --- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-longlived-context.js +++ b/third_party/WebKit/LayoutTests/fast/canvas/canvas-longlived-context.js @@ -26,7 +26,7 @@ function prepareCanvas() { } function clobberGC(count) { - for (var i = 0; i < 10000; ++i) + for (var i = 0; i < 5000; ++i) ({a: i*i*i*0.5+"str", b: i/Math.sqrt(i)}); if (count > 0) clobberGC(count-1); @@ -34,7 +34,7 @@ function clobberGC(count) { function test() { context = prepareCanvas(); - clobberGC(50); + clobberGC(40); pixelShouldBe(50, 50, [0, 128, 0, 255]); } test(); |