| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 // Check that we can traverse very deep stacks of ConsStrings using | 28 // Check that we can traverse very deep stacks of ConsStrings using |
| 29 // StringCharacterStram. Check that Get(int) works on very deep stacks | 29 // StringCharacterStram. Check that Get(int) works on very deep stacks |
| 30 // of ConsStrings. These operations may not be very fast, but they | 30 // of ConsStrings. These operations may not be very fast, but they |
| 31 // should be possible without getting errors due to too deep recursion. | 31 // should be possible without getting errors due to too deep recursion. |
| 32 | 32 |
| 33 // TODO(mythria): Remove this define after this flag is turned on globally |
| 34 #define V8_IMMINENT_DEPRECATION_WARNINGS |
| 35 |
| 33 #include "src/v8.h" | 36 #include "src/v8.h" |
| 34 | 37 |
| 35 #include "src/objects.h" | 38 #include "src/objects.h" |
| 36 #include "src/ostreams.h" | 39 #include "src/ostreams.h" |
| 37 #include "test/cctest/cctest.h" | 40 #include "test/cctest/cctest.h" |
| 38 | 41 |
| 39 using namespace v8::internal; | 42 using namespace v8::internal; |
| 40 | 43 |
| 41 | 44 |
| 42 TEST(Create) { | 45 TEST(Create) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 67 CcTest::heap()->CollectAllGarbage(); | 70 CcTest::heap()->CollectAllGarbage(); |
| 68 | 71 |
| 69 // All symbols should be distinct. | 72 // All symbols should be distinct. |
| 70 for (int i = 0; i < kNumSymbols; ++i) { | 73 for (int i = 0; i < kNumSymbols; ++i) { |
| 71 CHECK(symbols[i]->SameValue(*symbols[i])); | 74 CHECK(symbols[i]->SameValue(*symbols[i])); |
| 72 for (int j = i + 1; j < kNumSymbols; ++j) { | 75 for (int j = i + 1; j < kNumSymbols; ++j) { |
| 73 CHECK(!symbols[i]->SameValue(*symbols[j])); | 76 CHECK(!symbols[i]->SameValue(*symbols[j])); |
| 74 } | 77 } |
| 75 } | 78 } |
| 76 } | 79 } |
| OLD | NEW |