Commit 8632023a authored by Fergus Dall's avatar Fergus Dall Committed by Commit Bot

Sheriff: Disable MergeSessionTest.XHRThrottle on Chrome OS for timeouts

TBR=cmumford@google.com
TBR=kinuko@chromium.org

Bug: 1005084
Change-Id: I1d22b527d7d5bdaa3f4e7c0b8726258ac43f30db
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1810442Reviewed-by: default avatarFergus Dall <sidereal@google.com>
Commit-Queue: Fergus Dall <sidereal@google.com>
Cr-Commit-Position: refs/heads/master@{#697504}
parent e347a5be
......@@ -17,6 +17,7 @@
#include "base/strings/stringprintf.h"
#include "base/synchronization/waitable_event.h"
#include "base/task/post_task.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/chromeos/login/existing_user_controller.h"
......@@ -1029,7 +1030,13 @@ IN_PROC_BROWSER_TEST_P(MergeSessionTest, PageThrottle) {
DVLOG(1) << "Loaded page at the end : " << title;
}
IN_PROC_BROWSER_TEST_P(MergeSessionTest, XHRThrottle) {
// TODO(crbug.com/1005084) Disabled on Chrome OS due to timeouts
#if defined(OS_CHROMEOS)
#define MAYBE_XHRThrottle DISABLED_XHRThrottle
#else
#define MAYBE_XHRThrottle XHRThrottle
#endif
IN_PROC_BROWSER_TEST_P(MergeSessionTest, MAYBE_XHRThrottle) {
StartNewUserSession(/*wait_for_merge=*/false,
/*is_under_advanced_protection=*/false);
......
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