summaryrefslogtreecommitdiff
path: root/tests/cgptlib_test.c
diff options
context:
space:
mode:
authorColin Chow <colinc@google.com>2010-06-02 18:20:59 -0700
committerColin Chow <colinc@google.com>2010-06-02 18:20:59 -0700
commitafdd058ebc239c6f3c51d3f8d8f84404d781a862 (patch)
treedfb1906a8f52496f7967430c60fa24e36e568e78 /tests/cgptlib_test.c
parent21ef1a3678854cf1a0ff63a6548305a3df2ecec3 (diff)
downloadvboot-afdd058ebc239c6f3c51d3f8d8f84404d781a862.tar.gz
fix int reference to unint64 from http://codereview.chromium.org/2438005
Review URL: http://codereview.chromium.org/2550001
Diffstat (limited to 'tests/cgptlib_test.c')
-rw-r--r--tests/cgptlib_test.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/tests/cgptlib_test.c b/tests/cgptlib_test.c
index 11b44fb2..80dc264d 100644
--- a/tests/cgptlib_test.c
+++ b/tests/cgptlib_test.c
@@ -811,39 +811,39 @@ static int EntryAttributeGetSetTest() {
GptData* gpt = GetEmptyGptData();
GptEntry* e = (GptEntry*)(gpt->primary_entries);
- e->attributes = 0x0000000000000000;
+ e->attributes = 0x0000000000000000LLU;
SetEntrySuccessful(e, 1);
- EXPECT(0x0100000000000000 == e->attributes);
+ EXPECT(0x0100000000000000LLU == e->attributes);
EXPECT(1 == GetEntrySuccessful(e));
- e->attributes = 0xFFFFFFFFFFFFFFFF;
+ e->attributes = 0xFFFFFFFFFFFFFFFFLLU;
SetEntrySuccessful(e, 0);
- EXPECT(0xFEFFFFFFFFFFFFFF == e->attributes);
+ EXPECT(0xFEFFFFFFFFFFFFFFLLU == e->attributes);
EXPECT(0 == GetEntrySuccessful(e));
- e->attributes = 0x0000000000000000;
+ e->attributes = 0x0000000000000000LLU;
SetEntryTries(e, 15);
EXPECT(15 == GetEntryTries(e));
- EXPECT(0x00F0000000000000 == e->attributes);
- e->attributes = 0xFFFFFFFFFFFFFFFF;
+ EXPECT(0x00F0000000000000LLU == e->attributes);
+ e->attributes = 0xFFFFFFFFFFFFFFFFLLU;
SetEntryTries(e, 0);
- EXPECT(0xFF0FFFFFFFFFFFFF == e->attributes);
+ EXPECT(0xFF0FFFFFFFFFFFFFLLU == e->attributes);
EXPECT(0 == GetEntryTries(e));
- e->attributes = 0x0000000000000000;
+ e->attributes = 0x0000000000000000LLU;
SetEntryPriority(e, 15);
- EXPECT(0x000F000000000000 == e->attributes);
+ EXPECT(0x000F000000000000LLU == e->attributes);
EXPECT(15 == GetEntryPriority(e));
- e->attributes = 0xFFFFFFFFFFFFFFFF;
+ e->attributes = 0xFFFFFFFFFFFFFFFFLLU;
SetEntryPriority(e, 0);
- EXPECT(0xFFF0FFFFFFFFFFFF == e->attributes);
+ EXPECT(0xFFF0FFFFFFFFFFFFLLU == e->attributes);
EXPECT(0 == GetEntryPriority(e));
- e->attributes = 0xFFFFFFFFFFFFFFFF;
+ e->attributes = 0xFFFFFFFFFFFFFFFFLLU;
EXPECT(1 == GetEntrySuccessful(e));
EXPECT(15 == GetEntryPriority(e));
EXPECT(15 == GetEntryTries(e));
- e->attributes = 0x0123000000000000;
+ e->attributes = 0x0123000000000000LLU;
EXPECT(1 == GetEntrySuccessful(e));
EXPECT(2 == GetEntryTries(e));
EXPECT(3 == GetEntryPriority(e));