Commit a6772430 authored by Clemens Hammacher's avatar Clemens Hammacher Committed by Commit Bot

[wasm] Enable more asm.js tests

They were disabled for some reason, but they are working, so reenable
them.

R=titzer@chromium.org

Change-Id: I24cab05d01060b9eae3d6191a978cdb04daf626b
Reviewed-on: https://chromium-review.googlesource.com/928648Reviewed-by: 's avatarBen Titzer <titzer@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#51440}
parent 3e08654d
......@@ -200,23 +200,8 @@ var inputs = [
];
var funcs = [
f32_add,
f32_sub,
f32_mul,
f32_div,
f32_ceil,
f32_floor,
// TODO(bradnelson) f32_sqrt,
// TODO(bradnelson) f32_abs,
// TODO(bradnelson) f32_min is wrong for -0
// TODO(bradnelson) f32_max is wrong for -0
f32_eq,
f32_ne,
f32_lt,
f32_lteq,
f32_gt,
f32_gteq,
f32_neg,
f32_add, f32_sub, f32_mul, f32_div, f32_ceil, f32_floor, f32_sqrt, f32_abs,
f32_min, f32_max, f32_eq, f32_ne, f32_lt, f32_lteq, f32_gt, f32_gteq, f32_neg
];
(function () {
......
......@@ -262,32 +262,10 @@ var inputs = [
];
var funcs = [
f64_add,
f64_sub,
f64_mul,
f64_div,
f64_eq,
f64_ne,
f64_lt,
f64_lteq,
f64_gt,
f64_gteq,
f64_ceil,
f64_floor,
// TODO(bradnelson) f64_sqrt,
f64_abs,
f64_neg,
// TODO(bradnelson) f64_min is wrong for -0
// TODO(bradnelson) f64_max is wrong for -0
f64_acos,
f64_asin,
f64_atan,
f64_cos,
f64_sin,
f64_tan,
f64_exp,
f64_log,
f64_atan2,
f64_add, f64_sub, f64_mul, f64_div, f64_eq, f64_ne, f64_lt,
f64_lteq, f64_gt, f64_gteq, f64_ceil, f64_floor, f64_sqrt, f64_abs,
f64_neg, f64_min, f64_max, f64_acos, f64_asin, f64_atan, f64_cos,
f64_sin, f64_tan, f64_exp, f64_log, f64_atan2,
];
(function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment