OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 collector.Add('0'); | 216 collector.Add('0'); |
217 collector.AddBlock( | 217 collector.AddBlock( |
218 i::Vector<const char>("12345678901234567890123456789012", 32)); | 218 i::Vector<const char>("12345678901234567890123456789012", 32)); |
219 i::Vector<char> seq = collector.EndSequence(); | 219 i::Vector<char> seq = collector.EndSequence(); |
220 CHECK_EQ(0, strncmp("0123456789012345678901234567890123", | 220 CHECK_EQ(0, strncmp("0123456789012345678901234567890123", |
221 seq.start(), seq.length())); | 221 seq.start(), seq.length())); |
222 } | 222 } |
223 | 223 |
224 | 224 |
225 // TODO(svenpanne) Unconditionally test this when our infrastructure is fixed. | 225 // TODO(svenpanne) Unconditionally test this when our infrastructure is fixed. |
226 #if !V8_OS_NACL | 226 #if !V8_CC_MSVC && !V8_OS_NACL |
227 TEST(CPlusPlus11Features) { | 227 TEST(CPlusPlus11Features) { |
228 struct S { | 228 struct S { |
229 bool x; | 229 bool x; |
230 struct T { | 230 struct T { |
231 double y; | 231 double y; |
232 int z[3]; | 232 int z[3]; |
233 } t; | 233 } t; |
234 }; | 234 }; |
235 S s{true, {3.1415, {1, 2, 3}}}; | 235 S s{true, {3.1415, {1, 2, 3}}}; |
236 CHECK_EQ(2, s.t.z[1]); | 236 CHECK_EQ(2, s.t.z[1]); |
(...skipping 13 matching lines...) Expand all Loading... |
250 for (auto& i : vec) { | 250 for (auto& i : vec) { |
251 ++i; | 251 ++i; |
252 } | 252 } |
253 int j = 12; | 253 int j = 12; |
254 for (auto i : vec) { | 254 for (auto i : vec) { |
255 CHECK_EQ(j, i); | 255 CHECK_EQ(j, i); |
256 j += 11; | 256 j += 11; |
257 } | 257 } |
258 } | 258 } |
259 #endif | 259 #endif |
OLD | NEW |