summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-20 22:42:10 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-05-20 22:42:10 +0000
commite87190a4953c8378f1d8eddecc8aaf7b67e8e83b (patch)
tree41fe552b5c6bdb9243214d1adcd1ed4ecb92ce14
parent76c3b3196acf73961327fcabe139ab608f96dc37 (diff)
downloadchromium_src-e87190a4953c8378f1d8eddecc8aaf7b67e8e83b.zip
chromium_src-e87190a4953c8378f1d8eddecc8aaf7b67e8e83b.tar.gz
chromium_src-e87190a4953c8378f1d8eddecc8aaf7b67e8e83b.tar.bz2
Fix the incorrect logic from r47842. Too many not's.
BUG=44662 BUG=44673 TEST=none TBR=robertshield Review URL: http://codereview.chromium.org/2100011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47853 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/test/plugin/plugin_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/test/plugin/plugin_test.cpp b/chrome/test/plugin/plugin_test.cpp
index e6d6a53..16addb7 100644
--- a/chrome/test/plugin/plugin_test.cpp
+++ b/chrome/test/plugin/plugin_test.cpp
@@ -144,7 +144,7 @@ TEST_F(PluginTest, Quicktime) {
}
// Disabled on Release bots - http://crbug.com/44662
-#if !defined(NDEBUG)
+#if defined(NDEBUG)
#define MediaPlayerNew DISABLED_MediaPlayerNew
#endif
TEST_F(PluginTest, MediaPlayerNew) {
@@ -156,7 +156,7 @@ TEST_F(PluginTest, DISABLED_MediaPlayerOld) {
TestPlugin("wmp_old.html", action_max_timeout_ms(), false);
}
-#if !defined(NDEBUG)
+#if defined(NDEBUG)
#define Real DISABLED_Real
#endif
// Disabled on Release bots - http://crbug.com/44673