summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authoralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-07 16:38:50 +0000
committeralexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-07 16:38:50 +0000
commitf70e06b8bed61d03babb996149f859b4878508d1 (patch)
treef9d83b5a4cd806d86e261547b8acb890b805bba2 /remoting
parent4c6ec07b5f5fb8ba15cd5a986f0df49cccad4297 (diff)
downloadchromium_src-f70e06b8bed61d03babb996149f859b4878508d1.zip
chromium_src-f70e06b8bed61d03babb996149f859b4878508d1.tar.gz
chromium_src-f70e06b8bed61d03babb996149f859b4878508d1.tar.bz2
Converted remoting_unittests back to be a plain executable.
This should fix Mac ASAN and mac_rel bots. BUG=268043 R=kalman@chromium.org Review URL: https://codereview.chromium.org/22286003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216203 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/base/resources_unittest.cc11
-rw-r--r--remoting/remoting.gyp14
-rw-r--r--remoting/unittests-Info.plist24
3 files changed, 3 insertions, 46 deletions
diff --git a/remoting/base/resources_unittest.cc b/remoting/base/resources_unittest.cc
index d2b2d23..d1bc851 100644
--- a/remoting/base/resources_unittest.cc
+++ b/remoting/base/resources_unittest.cc
@@ -26,14 +26,9 @@ class ResourcesTest : public testing::Test {
bool resources_available_;
};
-// TODO(alexeypa): Reenable the test once http://crbug.com/269143 is fixed.
-#if !defined(OS_CHROMEOS)
-#define MAYBE_ProductName ProductName
-#else
-#define MAYBE_ProductName DISABLED_ProductName
-#endif
-
-TEST_F(ResourcesTest, MAYBE_ProductName) {
+// TODO(alexeypa): Reenable the test once http://crbug.com/269143 (ChromeOS) and
+// http://crbug.com/268043 (MacOS) are fixed.
+TEST_F(ResourcesTest, DISABLED_ProductName) {
#if defined(GOOGLE_CHROME_BUILD)
std::string expected_product_name = "Chrome Remote Desktop";
#else // defined(GOOGLE_CHROME_BUILD)
diff --git a/remoting/remoting.gyp b/remoting/remoting.gyp
index 5675799..d44c671 100644
--- a/remoting/remoting.gyp
+++ b/remoting/remoting.gyp
@@ -2825,20 +2825,6 @@
],
},
}],
- ['OS=="mac"', {
- 'mac_bundle': 1,
- 'xcode_settings': {
- 'INFOPLIST_FILE': 'unittests-Info.plist',
- 'INFOPLIST_PREPROCESS': 'YES',
- },
- 'mac_bundle_resources': [
- 'unittests-Info.plist',
- '<!@pymod_do_main(remoting_copy_locales -o -p <(OS) -x <(PRODUCT_DIR) <(remoting_locales))',
- ],
- 'mac_bundle_resources!': [
- 'unittests-Info.plist',
- ],
- }], # OS=="mac"
['OS=="mac" or (OS=="linux" and chromeos==0)', {
# Javascript unittests are disabled on CrOS because they cause
# valgrind and test errors.
diff --git a/remoting/unittests-Info.plist b/remoting/unittests-Info.plist
deleted file mode 100644
index fcb8ee6..0000000
--- a/remoting/unittests-Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>English</string>
- <key>CFBundleExecutable</key>
- <string>${EXECUTABLE_NAME}</string>
- <key>CFBundleIdentifier</key>
- <string>org.chromium.chromoting.remoting_unittests</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundlePackageType</key>
- <string>BRPL</string>
- <key>CFBundleShortVersionString</key>
- <string>1.0.0.0</string>
- <key>CFBundleVersion</key>
- <string>1.0.0.0</string>
- <key>CFBundleSignature</key>
- <string>${CHROMIUM_CREATOR}</string>
- <key>LSMinimumSystemVersion</key>
- <string>10.5.0</string>
-</dict>
-</plist>