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

Unified Diff: test/cctest/test-types.cc

Issue 571913002: moar printf (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-types.cc
diff --git a/test/cctest/test-types.cc b/test/cctest/test-types.cc
index ac3c959a721cba01e85668ac8f338fd77ad75368..1041f5c4252f49417ea170131ca9f0bfd7643f32 100644
--- a/test/cctest/test-types.cc
+++ b/test/cctest/test-types.cc
@@ -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();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698