| Index: test/mjsunit/external-array-no-sse2.js
|
| diff --git a/test/mjsunit/external-array-no-sse2.js b/test/mjsunit/external-array-no-sse2.js
|
| index cffcab86102433274bd01fdab82682f8061fea85..9a008fbe6b5264942c163d57a073736a3c115f85 100644
|
| --- a/test/mjsunit/external-array-no-sse2.js
|
| +++ b/test/mjsunit/external-array-no-sse2.js
|
| @@ -606,8 +606,10 @@ a61.set(a62)
|
| assertArrayPrefix([1, 12], a61)
|
|
|
| // Invalid source
|
| -assertThrows(function() { a.set(0) })
|
| -assertThrows(function() { a.set({}) })
|
| +a.set(0); // does not throw
|
| +assertArrayPrefix([1,2,3,4,5,6], a);
|
| +a.set({}); // does not throw
|
| +assertArrayPrefix([1,2,3,4,5,6], a);
|
|
|
|
|
| // Test arraybuffer.slice
|
|
|