| OLD | NEW |
| 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 (function() { | 5 (function() { |
| 6 | 6 |
| 7 "use strict"; | 7 "use strict"; |
| 8 | 8 |
| 9 var _oldLoad = load; | 9 var _oldLoad = load; |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 load('base.js'); | 27 load('base.js'); |
| 28 | 28 |
| 29 })(); | 29 })(); |
| 30 | 30 |
| 31 // ecmascript_simd_tests logs errors to the console. | 31 // ecmascript_simd_tests logs errors to the console. |
| 32 var console = { | 32 var console = { |
| 33 log: function(x) { print(x); }, | 33 log: function(x) { print(x); }, |
| 34 }; | 34 }; |
| 35 | 35 |
| 36 // Disable value type tests for now, since the polyfill can't pass them. | 36 |
| 37 // TODO(bbudge): Drop when polyfill is not needed. | 37 // Disable value type tests for now. The value semantics tests are incorrect. |
| 38 var skipValueTests = true; | 38 // TODO(bbudge): Drop when tests are fixed. |
| 39 var skipValueTests = true; |
| OLD | NEW |