diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-12 19:17:22 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-12 19:17:22 +0000 |
commit | 6980dd1bd7e7c224e8b70a1c36541303be7093db (patch) | |
tree | 6beedef8c183b227d7f14e837a98d314915c9a49 /chrome/test | |
parent | 11f3139bd25229c1b9f4f2b0e3f9392da6834bba (diff) | |
download | chromium_src-6980dd1bd7e7c224e8b70a1c36541303be7093db.zip chromium_src-6980dd1bd7e7c224e8b70a1c36541303be7093db.tar.gz chromium_src-6980dd1bd7e7c224e8b70a1c36541303be7093db.tar.bz2 |
Enable URLLoader test on Windows and Linux.
TBR=brettw
BUG=48734
TEST=none
Review URL: http://codereview.chromium.org/2931006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52117 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/ui/ppapi_uitest.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/test/ui/ppapi_uitest.cc b/chrome/test/ui/ppapi_uitest.cc index 678a471..3887f16 100644 --- a/chrome/test/ui/ppapi_uitest.cc +++ b/chrome/test/ui/ppapi_uitest.cc @@ -114,8 +114,12 @@ TEST_F(PPAPITest, Buffer) { RunTest("Buffer"); } +#if defined(OS_MACOSX) // http://crbug.com/48734 TEST_F(PPAPITest, FAILS_URLLoader) { +#else +TEST_F(PPAPITest, URLLoader) { +#endif RunTestViaHTTP("URLLoader"); } |