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