Title: [200263] trunk/Source/_javascript_Core
- Revision
- 200263
- Author
- benja...@webkit.org
- Date
- 2016-04-29 14:17:44 -0700 (Fri, 29 Apr 2016)
Log Message
Extend math-pow-stable-results.js to get more information about the failure
* tests/stress/math-pow-stable-results.js:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (200262 => 200263)
--- trunk/Source/_javascript_Core/ChangeLog 2016-04-29 21:08:43 UTC (rev 200262)
+++ trunk/Source/_javascript_Core/ChangeLog 2016-04-29 21:17:44 UTC (rev 200263)
@@ -1,3 +1,9 @@
+2016-04-29 Benjamin Poulain <benja...@webkit.org>
+
+ Extend math-pow-stable-results.js to get more information about the failure
+
+ * tests/stress/math-pow-stable-results.js:
+
2016-04-29 Yusuke Suzuki <utatane....@gmail.com>
Assertion failure for exception in "prototype" property getter and Reflect.construct
Modified: trunk/Source/_javascript_Core/tests/stress/math-pow-stable-results.js (200262 => 200263)
--- trunk/Source/_javascript_Core/tests/stress/math-pow-stable-results.js 2016-04-29 21:08:43 UTC (rev 200262)
+++ trunk/Source/_javascript_Core/tests/stress/math-pow-stable-results.js 2016-04-29 21:17:44 UTC (rev 200263)
@@ -71,7 +71,7 @@
let expectedResult = expectedResults[i][j];
let result = opaquePow(base, exponent);
if (!isIdentical(result, expectedResult))
- throw "Failed opaquePow with base = " + base + " exponent = " + exponent;
+ throw "Failed opaquePow with base = " + base + " exponent = " + exponent + " expected (" + expectedResult + ") got (" + result + ")";
result = constantBaseFunctions[i](exponent);
if (!isIdentical(result, expectedResult))
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes