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

Unified Diff: courgette/image_info_unittest.cc

Issue 149597: Code changes to get the code to compile under GCC.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « courgette/ensemble_apply.cc ('k') | courgette/streams.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/image_info_unittest.cc
===================================================================
--- courgette/image_info_unittest.cc (revision 21002)
+++ courgette/image_info_unittest.cc (working copy)
@@ -64,7 +64,7 @@
EXPECT_EQ(file1.length(), info->length());
ExpectExecutable(info.get());
- EXPECT_EQ(449536, info->size_of_code());
+ EXPECT_EQ(449536U, info->size_of_code());
EXPECT_EQ(SectionName(info->RVAToSection(0x00401234 - 0x00400000)),
std::string(".text"));
@@ -97,7 +97,7 @@
EXPECT_TRUE(info->ok());
EXPECT_FALSE(info->has_text_section());
- EXPECT_EQ(0u, info->size_of_code());
+ EXPECT_EQ(0U, info->size_of_code());
}
TEST_F(ImageInfoTest, All) {
Property changes on: courgette/image_info_unittest.cc
___________________________________________________________________
Name: svn:eol-style
+ LF
« no previous file with comments | « courgette/ensemble_apply.cc ('k') | courgette/streams.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698