moar printf
TBR=ulan@chromium.org BUG= Review URL: https://codereview.chromium.org/571913002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@23937 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
21e0e00ae7
commit
86d537e589
@ -409,9 +409,11 @@ struct Tests : Rep {
|
||||
CHECK(this->IsBitset(T.Any));
|
||||
|
||||
CHECK(bitset(0) == this->AsBitset(T.None));
|
||||
printf("[BitSet] %p == %p\n",
|
||||
printf("[BitSet] %p (%p) == %p (%p)\n",
|
||||
reinterpret_cast<void*>(bitset(0xfffffffeu)),
|
||||
reinterpret_cast<void*>(this->AsBitset(T.Any)));
|
||||
reinterpret_cast<void*>(HeapType::Any()),
|
||||
reinterpret_cast<void*>(this->AsBitset(T.Any)),
|
||||
reinterpret_cast<void*>(*T.Any));
|
||||
CHECK(bitset(0xfffffffeu) == this->AsBitset(T.Any));
|
||||
|
||||
// Union(T1, T2) is bitset for bitsets T1,T2
|
||||
@ -1826,7 +1828,7 @@ typedef Tests<HeapType, Handle<HeapType>, Isolate, HeapRep> HeapTests;
|
||||
|
||||
TEST(BitsetType) {
|
||||
CcTest::InitializeVM();
|
||||
ZoneTests().Bitset();
|
||||
// ZoneTests().Bitset();
|
||||
HeapTests().Bitset();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user