Commit 447b0d7b authored by Xiaocheng Hu's avatar Xiaocheng Hu Committed by Commit Bot

[Sheriff] Disable CacheStorageCacheTest/CacheStorageCacheTestP.KeysWithManyCacheEntries on Win

Bug: 936129
Tbr: wanderview@chromium.org
NoTry: True
Change-Id: Ifcfd654ab9a40fdbd6792779601ebcc4a3b1c4bd
Reviewed-on: https://chromium-review.googlesource.com/c/1490743Reviewed-by: default avatarXiaocheng Hu <xiaochengh@chromium.org>
Commit-Queue: Xiaocheng Hu <xiaochengh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#635785}
parent c1a90095
......@@ -24,6 +24,7 @@
#include "base/test/bind_test_util.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/threading/thread_task_runner_handle.h"
#include "build/build_config.h"
#include "content/browser/blob_storage/chrome_blob_storage_context.h"
#include "content/browser/cache_storage/cache_storage_cache.h"
#include "content/browser/cache_storage/cache_storage_cache_handle.h"
......@@ -2289,7 +2290,13 @@ TEST_P(CacheStorageCacheTestP, VerifySerialScheduling) {
EXPECT_EQ(2, sequence_out);
}
TEST_P(CacheStorageCacheTestP, KeysWithManyCacheEntries) {
#if defined(OS_WIN)
// TODO(crbug.com/936129): Flaky on Windows.
#define MAYBE_KeysWithManyCacheEntries DISABLED_KeysWithManyCacheEntries
#else
#define MAYBE_KeysWithManyCacheEntries KeysWithManyCacheEntries
#endif
TEST_P(CacheStorageCacheTestP, MAYBE_KeysWithManyCacheEntries) {
constexpr int kNumEntries = 1000;
std::vector<std::string> expected_keys;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment