summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Math/hypot/Math.hypot_Zero_2.js
blob: 0e121bd021c1c1aa3e90145d665827d29191bb5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) 2014 Ryan Lewis. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-math.hypot
es6id: 20.2.2.18
author: Ryan Lewis
description: Math.hypot should return 0 if all arguments are 0 or -0.
---*/

assert.sameValue(Math.hypot(0), 0, 'Math.hypot(0)');
assert.sameValue(Math.hypot(-0), 0, 'Math.hypot(-0)');
assert.sameValue(Math.hypot(0, 0), 0, 'Math.hypot(0, 0)');
assert.sameValue(Math.hypot(0, -0), 0, 'Math.hypot(0, -0)');
assert.sameValue(Math.hypot(-0, 0), 0, 'Math.hypot(-0, 0)');
assert.sameValue(Math.hypot(-0, -0), 0, 'Math.hypot(-0, -0)');
assert.sameValue(Math.hypot(0, -0, -0), 0, 'Math.hypot(0, -0, -0)');

reportCompare(0, 0);