Changeset 201632 in webkit
- Timestamp:
- Jun 2, 2016, 7:54:05 PM (10 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
js/math-clz32-expected.txt (modified) (1 diff)
-
js/script-tests/math-clz32.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r201627 r201632 1 2016-06-02 Benjamin Poulain <bpoulain@apple.com> 2 3 Fix a typo in the clz32() tests 4 5 Rubber-stamped by Joseph Pecoraro. 6 7 Joe found a bug in math-clz32.js: I typed INFINITI instead of INFINITY. 8 The tests was effectively checking "undefined" instead of infinity. 9 10 * js/math-clz32-expected.txt: 11 * js/script-tests/math-clz32.js: 12 (objectRecordConversionCalls.valueOf): 13 1 14 2016-06-02 Chris Dumez <cdumez@apple.com> 2 15 -
trunk/LayoutTests/js/math-clz32-expected.txt
r200402 r201632 26 26 PASS Math.clz32(Math.E) is 30 27 27 PASS Math.clz32(NaN) is 32 28 PASS Math.clz32(Number.POSITIVE_INFINIT I) is 3229 PASS Math.clz32(Number.NEGATIVE_INFINIT I) is 3228 PASS Math.clz32(Number.POSITIVE_INFINITY) is 32 29 PASS Math.clz32(Number.NEGATIVE_INFINITY) is 32 30 30 PASS Math.clz32() is 32 31 31 PASS Math.clz32(undefined) is 32 -
trunk/LayoutTests/js/script-tests/math-clz32.js
r183358 r201632 29 29 shouldBe('Math.clz32(Math.E)', '30'); 30 30 shouldBe('Math.clz32(NaN)', '32'); 31 shouldBe('Math.clz32(Number.POSITIVE_INFINIT I)', '32');32 shouldBe('Math.clz32(Number.NEGATIVE_INFINIT I)', '32');31 shouldBe('Math.clz32(Number.POSITIVE_INFINITY)', '32'); 32 shouldBe('Math.clz32(Number.NEGATIVE_INFINITY)', '32'); 33 33 34 34 shouldBe('Math.clz32()', '32');
Note:
See TracChangeset
for help on using the changeset viewer.