diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-21 23:29:38 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-21 23:29:38 +0000 |
commit | d2349f534b2131878871d48521908bc67852efa5 (patch) | |
tree | 3d5e21af1156bc8950a34c6bb0d0ae336cdc3ff4 /ipc | |
parent | 5c44717b06f2937e21e93ceaef6f83e4dc365d79 (diff) | |
download | chromium_src-d2349f534b2131878871d48521908bc67852efa5.zip chromium_src-d2349f534b2131878871d48521908bc67852efa5.tar.gz chromium_src-d2349f534b2131878871d48521908bc67852efa5.tar.bz2 |
Ensure that the disabled test doesn't run setup on xp
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272013 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_proxy_unittest.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ipc/ipc_channel_proxy_unittest.cc b/ipc/ipc_channel_proxy_unittest.cc index d0be589..0ff2032 100644 --- a/ipc/ipc_channel_proxy_unittest.cc +++ b/ipc/ipc_channel_proxy_unittest.cc @@ -388,6 +388,11 @@ class IPCChannelBadMessageTest : public IPCTestBase { virtual ~IPCChannelBadMessageTest() {} virtual void SetUp() OVERRIDE { +#if defined(OS_WIN) + // TODO(jam): for some reason this is failing on XP buildbots. + if (base::win::GetVersion() <= base::win::VERSION_XP) + return; +#endif IPCTestBase::SetUp(); Init("ChannelProxyClient"); |