Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(490)

Unified Diff: test/mjsunit/div-mod.js

Issue 143003013: Initial patch for a64. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/message/message.status ('k') | test/mjsunit/harmony/proxies.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/div-mod.js
diff --git a/test/mjsunit/div-mod.js b/test/mjsunit/div-mod.js
index c3144955cbcfd936958a5fbacf8432b077d36cad..9f71ec3545d8280b25448da040ab2420263f4a25 100644
--- a/test/mjsunit/div-mod.js
+++ b/test/mjsunit/div-mod.js
@@ -126,9 +126,16 @@ function compute_mod(dividend, divisor) {
var example_numbers = [
NaN,
0,
- Number.MIN_VALUE,
- 3 * Number.MIN_VALUE,
- max_denormal,
+
+ // TODO(all): due to a bug in fmod(), modulos involving denormals
+ // return the wrong result for glibc <= 2.16. Restore these cases when
+ // development machines have been upgraded.
+ // Details: http://sourceware.org/bugzilla/show_bug.cgi?id=14048
+
+ // Number.MIN_VALUE,
+ // 3 * Number.MIN_VALUE,
+ // max_denormal,
+
min_normal,
repeating_decimal,
finite_decimal,
« no previous file with comments | « test/message/message.status ('k') | test/mjsunit/harmony/proxies.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698