Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(672)

Unified Diff: base/win/pe_image_unittest.cc

Issue 12207128: Temporarily disable failing Win64 tests relying on pe_image (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/installer/util/installer_state_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/win/pe_image_unittest.cc
===================================================================
--- base/win/pe_image_unittest.cc (revision 181934)
+++ base/win/pe_image_unittest.cc (working copy)
@@ -189,9 +189,17 @@
return expected[value][expected_set];
}
+
+// TODO(jschuh): crbug.com/167707 Need to fix test on Win64 bots
+#if defined(OS_WIN) && defined(ARCH_CPU_X86_64)
+#define MAYBE_EnumeratesPE DISABLED_EnumeratesPE
+#else
+#define MAYBE_EnumeratesPE EnumeratesPE
+#endif
+
// Tests that we are able to enumerate stuff from a PE file, and that
// the actual number of items found is within the expected range.
-TEST(PEImageTest, EnumeratesPE) {
+TEST(PEImageTest, MAYBE_EnumeratesPE) {
HMODULE module = LoadLibrary(L"advapi32.dll");
ASSERT_TRUE(NULL != module);
« no previous file with comments | « no previous file | chrome/installer/util/installer_state_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698