1// Copyright (c) 2011 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "build/build_config.h"
6#include "base/metrics/histogram.h"
7#include "crypto/nss_util.h"
8#include "net/base/net_test_suite.h"
9#include "net/socket/client_socket_pool_base.h"
10#include "net/spdy/spdy_session.h"
11
12using net::internal::ClientSocketPoolBaseHelper;
13using net::SpdySession;
14
15int main(int argc, char** argv) {
16  // Record histograms, so we can get histograms data in tests.
17  base::StatisticsRecorder recorder;
18  NetTestSuite test_suite(argc, argv);
19  ClientSocketPoolBaseHelper::set_connect_backup_jobs_enabled(false);
20  SpdySession::set_enable_ping_based_connection_checking(false);
21
22#if defined(OS_WIN)
23  // We want to be sure to init NSPR on the main thread.
24  crypto::EnsureNSPRInit();
25#endif
26
27  return test_suite.Run();
28}
29