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

Side by Side Diff: test/mjsunit/messages.js

Issue 1239423004: SIMD.js: Update Float32x4 and tests to current spec. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Skip tests that haven't been updated to new spec. Created 5 years, 5 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
« no previous file with comments | « test/mjsunit/harmony/simd.js ('k') | test/simdjs/harness-adapt.js » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --stack-size=100 --harmony --harmony-reflect --harmony-arrays 5 // Flags: --stack-size=100 --harmony --harmony-reflect --harmony-arrays
6 // Flags: --harmony-regexps --harmony-simd --strong-mode 6 // Flags: --harmony-regexps --harmony-simd --strong-mode
7 7
8 function test(f, expected, type) { 8 function test(f, expected, type) {
9 try { 9 try {
10 f(); 10 f();
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 "" + Symbol(); 318 "" + Symbol();
319 }, "Cannot convert a Symbol value to a string", TypeError); 319 }, "Cannot convert a Symbol value to a string", TypeError);
320 320
321 // kSymbolToNumber 321 // kSymbolToNumber
322 test(function() { 322 test(function() {
323 1 + Symbol(); 323 1 + Symbol();
324 }, "Cannot convert a Symbol value to a number", TypeError); 324 }, "Cannot convert a Symbol value to a number", TypeError);
325 325
326 // kSimdToNumber 326 // kSimdToNumber
327 test(function() { 327 test(function() {
328 1 + SIMD.float32x4(1, 2, 3, 4); 328 1 + SIMD.Float32x4(1, 2, 3, 4);
329 }, "Cannot convert a SIMD value to a number", TypeError); 329 }, "Cannot convert a SIMD value to a number", TypeError);
330 330
331 // kUndefinedOrNullToObject 331 // kUndefinedOrNullToObject
332 test(function() { 332 test(function() {
333 Array.prototype.toString.call(null); 333 Array.prototype.toString.call(null);
334 }, "Cannot convert undefined or null to object", TypeError); 334 }, "Cannot convert undefined or null to object", TypeError);
335 335
336 // kValueAndAccessor 336 // kValueAndAccessor
337 test(function() { 337 test(function() {
338 Object.defineProperty({}, "x", { get: function(){}, value: 1}); 338 Object.defineProperty({}, "x", { get: function(){}, value: 1});
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 Number(1).toString(100); 467 Number(1).toString(100);
468 }, "toString() radix argument must be between 2 and 36", RangeError); 468 }, "toString() radix argument must be between 2 and 36", RangeError);
469 469
470 470
471 // === URIError === 471 // === URIError ===
472 472
473 // kURIMalformed 473 // kURIMalformed
474 test(function() { 474 test(function() {
475 decodeURI("%%"); 475 decodeURI("%%");
476 }, "URI malformed", URIError); 476 }, "URI malformed", URIError);
OLDNEW
« no previous file with comments | « test/mjsunit/harmony/simd.js ('k') | test/simdjs/harness-adapt.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698