diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 06:02:07 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-05 06:02:07 +0000 |
commit | 6d3744980e419303b01f12fe6c82ff81cfc2fd2f (patch) | |
tree | 3ad6ece5678bf4cf53fb04d232dfb779ccf4b89f /DEPS | |
parent | aded0071867946f9aab08ce88ebbfd83c77c83af (diff) | |
download | chromium_src-6d3744980e419303b01f12fe6c82ff81cfc2fd2f.zip chromium_src-6d3744980e419303b01f12fe6c82ff81cfc2fd2f.tar.gz chromium_src-6d3744980e419303b01f12fe6c82ff81cfc2fd2f.tar.bz2 |
Run the DOM Storage layout tests in the UI test framework since the test shell doesn't hit very much of the new code. I still plan to write unit tests and we're still goign to enable the layout tests in test shell, but this is still a good way for us to test the full stack ASAP.
Workers has used this technique for a while now. This CL factors out the layout test running code from the workers ui test and moves arounds directories a bit so not everything is in the "workers" directory.
Doing this via a v8 extension is the right way to go long term, but I ran into a couple snags, so I think this is a good first step.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/159720
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@22466 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'DEPS')
-rw-r--r-- | DEPS | 33 |
1 files changed, 21 insertions, 12 deletions
@@ -57,18 +57,27 @@ deps = { "src/tools/page_cycler/acid3": "/trunk/deps/page_cycler/acid3@19546", - # TODO(jianli): Remove this once we do not need to run worker's layout tests - # in ui test. - "src/chrome/test/data/workers/LayoutTests/fast/events": - Var("webkit_trunk") + "/LayoutTests/fast/events@" + Var("webkit_revision"), - "src/chrome/test/data/workers/LayoutTests/fast/workers": - Var("webkit_trunk") + "/LayoutTests/fast/workers@" + Var("webkit_revision"), - "src/chrome/test/data/workers/LayoutTests/http/tests/resources": - Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + Var("webkit_revision"), - "src/chrome/test/data/workers/LayoutTests/http/tests/workers": - Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + Var("webkit_revision"), - "src/chrome/test/data/workers/LayoutTests/http/tests/xmlhttprequest": - Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + Var("webkit_revision"), + # We run these layout tests as UI tests. Since many of the buildbots that + # run layout tests do NOT have access to the LayoutTest directory, we need + # to map them here. In practice, these do not take up much space. + "src/chrome/test/data/layout_tests/LayoutTests/fast/events": + Var("webkit_trunk") + "/LayoutTests/fast/events@" + + Var("webkit_revision"), + "src/chrome/test/data/layout_tests/LayoutTests/fast/workers": + Var("webkit_trunk") + "/LayoutTests/fast/workers@" + + Var("webkit_revision"), + "src/chrome/test/data/layout_tests/LayoutTests/http/tests/resources": + Var("webkit_trunk") + "/LayoutTests/http/tests/resources@" + + Var("webkit_revision"), + "src/chrome/test/data/layout_tests/LayoutTests/http/tests/workers": + Var("webkit_trunk") + "/LayoutTests/http/tests/workers@" + + Var("webkit_revision"), + "src/chrome/test/data/layout_tests/LayoutTests/http/tests/xmlhttprequest": + Var("webkit_trunk") + "/LayoutTests/http/tests/xmlhttprequest@" + + Var("webkit_revision"), + "src/chrome/test/data/layout_tests/LayoutTests/storage/domstorage": + Var("webkit_trunk") + "/LayoutTests/storage/domstorage@" + + Var("webkit_revision"), } |