Commit 373cde59 authored by ruuda's avatar ruuda Committed by Commit bot

[Android] Fix sign of integer literal in test

BUG=577575
TBR=digit@chromium.org

Review URL: https://codereview.chromium.org/1586033002

Cr-Commit-Position: refs/heads/master@{#369394}
parent 69b3f0b7
...@@ -434,8 +434,8 @@ TEST_F(HeapProfilerTest, Test64Bit) { ...@@ -434,8 +434,8 @@ TEST_F(HeapProfilerTest, Test64Bit) {
(void*)0x7ffffffffffff000L, 4096, st2.frames, st2.depth, 0); (void*)0x7ffffffffffff000L, 4096, st2.frames, st2.depth, 0);
heap_profiler_alloc( heap_profiler_alloc(
(void*)0xfffffffffffff000L, 4096, st3.frames, st3.depth, 0); (void*)0xfffffffffffff000L, 4096, st3.frames, st3.depth, 0);
EXPECT_EQ(3, stats_.num_allocs); EXPECT_EQ(3u, stats_.num_allocs);
EXPECT_EQ(3, stats_.num_stack_traces); EXPECT_EQ(3u, stats_.num_stack_traces);
EXPECT_EQ(4096u + 4096 + 4096, stats_.total_alloc_bytes); EXPECT_EQ(4096u + 4096 + 4096, stats_.total_alloc_bytes);
heap_profiler_free((void*)0x1000, 4096, NULL); heap_profiler_free((void*)0x1000, 4096, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment