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 | 12 |
1 files changed, 12 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..b5be3531c2 --- /dev/null +++ b/js/src/tests/test262/harness/compare-array-empty.js @@ -0,0 +1,12 @@ +// 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] +---*/ + +assert.compareArray([], [], 'Empty arrays are equivalent.'); + +reportCompare(0, 0); |