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

Side by Side Diff: test/mjsunit/harmony/sharedarraybuffer.js

Issue 2798403004: [SAB] Fix {newtarget-prototype-is-not-object,proto-from-ctor-realm} tests (Closed)
Patch Set: skip test that fails because of ASAN allocation failure Created 3 years, 8 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 | « src/js/typedarray.js ('k') | test/mjsunit/mjsunit.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after
576 var desc = Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, 'byteLength'); 576 var desc = Object.getOwnPropertyDescriptor(ArrayBuffer.prototype, 'byteLength');
577 s = new SharedArrayBuffer(10); 577 s = new SharedArrayBuffer(10);
578 Object.defineProperty(s, 'byteLength', desc); 578 Object.defineProperty(s, 'byteLength', desc);
579 assertThrows(function() {s.byteLength}, TypeError); 579 assertThrows(function() {s.byteLength}, TypeError);
580 580
581 desc = Object.getOwnPropertyDescriptor(SharedArrayBuffer.prototype, 581 desc = Object.getOwnPropertyDescriptor(SharedArrayBuffer.prototype,
582 'byteLength'); 582 'byteLength');
583 var a = new ArrayBuffer(10); 583 var a = new ArrayBuffer(10);
584 Object.defineProperty(a, 'byteLength', desc); 584 Object.defineProperty(a, 'byteLength', desc);
585 assertThrows(function() {a.byteLength}, TypeError); 585 assertThrows(function() {a.byteLength}, TypeError);
586
587 // test SharedArrayBuffer species getter
588 assertSame(SharedArrayBuffer[Symbol.species], SharedArrayBuffer);
589 var desc = Object.getOwnPropertyDescriptor(SharedArrayBuffer, Symbol.species);
590 assertEquals("function", typeof desc.get);
591 assertEquals("get [Symbol.species]", desc.get.name);
592 assertEquals(0, desc.get.length);
593 assertEquals("undefined", typeof desc.set);
594 assertTrue(desc.configurable);
595 assertFalse(desc.enumerable);
OLDNEW
« no previous file with comments | « src/js/typedarray.js ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698