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

Side by Side Diff: test/cctest/test-symbols.cc

Issue 426233002: Land the Fan (disabled) (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review feedback, rebase and "git cl format" Created 6 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/cctest/test-regexp.cc ('k') | test/fuzz-natives/fuzz-natives.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 2
3 // Check that we can traverse very deep stacks of ConsStrings using 3 // Check that we can traverse very deep stacks of ConsStrings using
4 // StringCharacterStram. Check that Get(int) works on very deep stacks 4 // StringCharacterStram. Check that Get(int) works on very deep stacks
5 // of ConsStrings. These operations may not be very fast, but they 5 // of ConsStrings. These operations may not be very fast, but they
6 // should be possible without getting errors due to too deep recursion. 6 // should be possible without getting errors due to too deep recursion.
7 7
8 #include "src/v8.h" 8 #include "src/v8.h"
9 9
10 #include "src/objects.h" 10 #include "src/objects.h"
11 #include "src/ostreams.h"
11 #include "test/cctest/cctest.h" 12 #include "test/cctest/cctest.h"
12 13
13 using namespace v8::internal; 14 using namespace v8::internal;
14 15
15 16
16 TEST(Create) { 17 TEST(Create) {
17 CcTest::InitializeVM(); 18 CcTest::InitializeVM();
18 Isolate* isolate = CcTest::i_isolate(); 19 Isolate* isolate = CcTest::i_isolate();
19 HandleScope scope(isolate); 20 HandleScope scope(isolate);
20 21
(...skipping 20 matching lines...) Expand all
41 CcTest::heap()->CollectAllGarbage(Heap::kNoGCFlags); 42 CcTest::heap()->CollectAllGarbage(Heap::kNoGCFlags);
42 43
43 // All symbols should be distinct. 44 // All symbols should be distinct.
44 for (int i = 0; i < kNumSymbols; ++i) { 45 for (int i = 0; i < kNumSymbols; ++i) {
45 CHECK(symbols[i]->SameValue(*symbols[i])); 46 CHECK(symbols[i]->SameValue(*symbols[i]));
46 for (int j = i + 1; j < kNumSymbols; ++j) { 47 for (int j = i + 1; j < kNumSymbols; ++j) {
47 CHECK(!symbols[i]->SameValue(*symbols[j])); 48 CHECK(!symbols[i]->SameValue(*symbols[j]));
48 } 49 }
49 } 50 }
50 } 51 }
OLDNEW
« no previous file with comments | « test/cctest/test-regexp.cc ('k') | test/fuzz-natives/fuzz-natives.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698