blob: d04f261a760541d84d97187d33f51f4fb72599c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/path_service.h"
#include "build/build_config.h"
#include "chrome/test/remoting/qunit_browser_test_runner.h"
#if defined(OS_MACOSX)
#include "base/mac/foundation_util.h"
#endif // !defined(OS_MACOSX)
namespace remoting {
// Flakily times out on Win7 Tests (dbg) and Linux Tests (dbg)(1):
// https://crbug.com/504204. Recently completely broken on
// Linux: https://crbug.com/582005
IN_PROC_BROWSER_TEST_F(QUnitBrowserTestRunner,
DISABLED_Remoting_Webapp_Js_Unittest) {
base::FilePath base_dir;
ASSERT_TRUE(PathService::Get(base::DIR_EXE, &base_dir));
#if defined(OS_MACOSX)
if (base::mac::AmIBundled()) {
// If we are inside a mac bundle, navigate up to the output directory
base_dir = base::mac::GetAppBundlePath(base_dir).DirName();
}
#endif // !defined(OS_MACOSX)
RunTest(
base_dir.Append(FILE_PATH_LITERAL("remoting/unittests/unittests.html")));
}
} // namespace remoting
|