Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 (function() { | |
| 6 | |
|
Michael Achenbach
2015/05/20 10:33:17
This is not used yet. See comment in other file.
bradn
2015/05/20 11:30:05
Dropped, leftover from the other approach.
| |
| 7 "use strict"; | |
| 8 | |
| 9 var _oldLoad = load; | |
| 10 | |
| 11 load = function(filename) { | |
| 12 // TODO(bradnelson): Drop this when fixed upstream. | |
| 13 // Skip broken tests for now. | |
| 14 if (filename === 'averageFloat32x4Load.js' || | |
| 15 filename === 'matrix-multiplication.js' || | |
| 16 filename === 'aobench.js') return; | |
| 17 if (filename !== 'kernel-template.js' && | |
| 18 filename !== 'run.js' && | |
| 19 filename !== 'base.js' && | |
| 20 filename !== 'ecmascript_simd_tests.js' && | |
| 21 filename !== '../ecmascript_simd.js' && | |
| 22 filename !== 'averageFloat32x4.js' && | |
| 23 filename !== 'averageFloat32x4LoadFromInt8Array.js') return; | |
| 24 _oldLoad(filename); | |
| 25 }; | |
| 26 | |
| 27 })(); | |
| OLD | NEW |