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

Unified Diff: third_party/crashpad/crashpad/util/numeric/checked_address_range_test.cc

Issue 2478633002: Update Crashpad to b47bf6c250c6b825dee1c5fbad9152c2c962e828 (Closed)
Patch Set: mac comment 2 Created 4 years, 1 month 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
Index: third_party/crashpad/crashpad/util/numeric/checked_address_range_test.cc
diff --git a/third_party/crashpad/crashpad/util/numeric/checked_address_range_test.cc b/third_party/crashpad/crashpad/util/numeric/checked_address_range_test.cc
index 6b7e4c434aaeeccbf854ff57a65db836ff997f7b..403c000f83f48dce2b8f631d68804df4afcd9d00 100644
--- a/third_party/crashpad/crashpad/util/numeric/checked_address_range_test.cc
+++ b/third_party/crashpad/crashpad/util/numeric/checked_address_range_test.cc
@@ -122,7 +122,7 @@ TEST(CheckedAddressRange, IsValid) {
for (size_t index = 0; index < arraysize(kTestData); ++index) {
const TestData& testcase = kTestData[index];
SCOPED_TRACE(base::StringPrintf("index %" PRIuS
- ", base 0x%llx, size 0x%llx",
+ ", base 0x%" PRIx64 ", size 0x%" PRIx64,
index,
testcase.base,
testcase.size));
@@ -173,7 +173,7 @@ TEST(CheckedAddressRange, ContainsValue) {
for (size_t index = 0; index < arraysize(kTestData); ++index) {
const TestData& testcase = kTestData[index];
SCOPED_TRACE(base::StringPrintf(
- "index %" PRIuS ", value 0x%llx", index, testcase.value));
+ "index %" PRIuS ", value 0x%" PRIx64, index, testcase.value));
EXPECT_EQ(testcase.expectation,
parent_range_32.ContainsValue(testcase.value));
@@ -230,7 +230,7 @@ TEST(CheckedAddressRange, ContainsRange) {
for (size_t index = 0; index < arraysize(kTestData); ++index) {
const TestData& testcase = kTestData[index];
SCOPED_TRACE(base::StringPrintf("index %" PRIuS
- ", base 0x%llx, size 0x%llx",
+ ", base 0x%" PRIx64 ", size 0x%" PRIx64,
index,
testcase.base,
testcase.size));
« no previous file with comments | « third_party/crashpad/crashpad/util/misc/uuid.cc ('k') | third_party/crashpad/crashpad/util/posix/close_multiple.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698