| 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 | |
| 36 #include "src/v8.h" | 33 #include "src/v8.h" |
| 37 | 34 |
| 38 #include "src/objects.h" | 35 #include "src/objects.h" |
| 39 #include "src/ostreams.h" | 36 #include "src/ostreams.h" |
| 40 #include "test/cctest/cctest.h" | 37 #include "test/cctest/cctest.h" |
| 41 | 38 |
| 42 using namespace v8::internal; | 39 using namespace v8::internal; |
| 43 | 40 |
| 44 | 41 |
| 45 TEST(Create) { | 42 TEST(Create) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 70 CcTest::heap()->CollectAllGarbage(); | 67 CcTest::heap()->CollectAllGarbage(); |
| 71 | 68 |
| 72 // All symbols should be distinct. | 69 // All symbols should be distinct. |
| 73 for (int i = 0; i < kNumSymbols; ++i) { | 70 for (int i = 0; i < kNumSymbols; ++i) { |
| 74 CHECK(symbols[i]->SameValue(*symbols[i])); | 71 CHECK(symbols[i]->SameValue(*symbols[i])); |
| 75 for (int j = i + 1; j < kNumSymbols; ++j) { | 72 for (int j = i + 1; j < kNumSymbols; ++j) { |
| 76 CHECK(!symbols[i]->SameValue(*symbols[j])); | 73 CHECK(!symbols[i]->SameValue(*symbols[j])); |
| 77 } | 74 } |
| 78 } | 75 } |
| 79 } | 76 } |
| OLD | NEW |