summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/harness/compare-array-sparse.js
blob: cbfa79d42563a3e547894682bb2c597d736326d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Spares arrays are only equivalent if they have the same length.
includes: [compareArray.js]
---*/


assert.compareArray([,], [,], 'Sparse arrays of the same length are equivalent.');
assert.throws(Test262Error, () => {
  assert.compareArray([,], [,,]);
}, 'Sparse arrays of differing lengths are not equivalent.');
assert.throws(Test262Error, () => {
  assert.compareArray([,,], [,]);
}, 'Sparse arrays of differing lengths are not equivalent.');
assert.throws(Test262Error, () => {
  assert.compareArray([,], []);
}, 'Sparse arrays are not equivalent to empty arrays.');
assert.throws(Test262Error, () => {
  assert.compareArray([], [,]);
}, 'Sparse arrays are not equivalent to empty arrays.');

reportCompare(0, 0);