diff options
Diffstat (limited to 'js/src/tests/test262/harness/compare-array-empty.js')
-rw-r--r-- | js/src/tests/test262/harness/compare-array-empty.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/test262/harness/compare-array-empty.js b/js/src/tests/test262/harness/compare-array-empty.js new file mode 100644 index 0000000000..c4961be2d8 --- /dev/null +++ b/js/src/tests/test262/harness/compare-array-empty.js @@ -0,0 +1,14 @@ +// Copyright (C) 2015 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Empty arrays of are equivalent. +includes: [compareArray.js] +---*/ + +if (compareArray([], []) !== true) { + throw new Error('Empty arrays are equivalent.'); +} + +reportCompare(0, 0); |