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

Unified Diff: test/wasm-spec-tests/wasm-spec-tests.status

Issue 2890613003: MIPS: Add tests to be skipped because of NaN representation on MIPS (Closed)
Patch Set: Tests tests/conversions don't fail in simulator. Created 3 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/wasm-spec-tests/wasm-spec-tests.status
diff --git a/test/wasm-spec-tests/wasm-spec-tests.status b/test/wasm-spec-tests/wasm-spec-tests.status
index 62706d4d8ea23e248fa74a383b0247b092481f97..94df9c76c40ddd6f663608b9b75106b32bd2d058 100644
--- a/test/wasm-spec-tests/wasm-spec-tests.status
+++ b/test/wasm-spec-tests/wasm-spec-tests.status
@@ -4,17 +4,27 @@
[
[ALWAYS, {
- # These tests fail because mips does not support the correct NaN bit patterns.
- 'tests/float_misc': [PASS, ['arch == mipsel or arch == mips64el', SKIP]],
- 'tests/float_exprs': [PASS, ['arch == mipsel or arch == mips64el', SKIP]],
- 'tests/f32': [PASS, ['arch == mipsel or arch == mips64el', SKIP]],
- 'tests/f64': [PASS, ['arch == mipsel or arch == mips64el', SKIP]],
-
#TODO(ahaas): Add additional stack checks on mips.
# Issue 6318: Stack checks for functions with huge stack frames fail on x64 and ia32
'tests/skip-stack-guard-page': [PASS, ['arch == mipsel or arch == mips64el or arch == x64 or arch == ia32', SKIP]],
}], # ALWAYS
+['arch == mipsel or arch == mips64el or arch == mips or arch == mips64', {
+ # These tests fail because mips does not support the correct NaN bit patterns.
+ 'tests/float_misc': [SKIP],
+ 'tests/float_exprs': [SKIP],
+ 'tests/f32': [SKIP],
+ 'tests/f64': [SKIP],
+ 'tests/f32_bitwise': [SKIP],
+ 'tests/f64_bitwise': [SKIP],
+}], # 'arch == mipsel or arch == mips64el or arch == mips or arch == mips64'
+
+['(arch == mipsel or arch == mips64el or arch == mips or arch == mips64) and not simulator_run', {
+ # This test fail because mips does not support the correct NaN bit patterns.
+ # But it doesn't fail in simulator.
+ 'tests/conversions': [SKIP],
+}], # '(arch == mipsel or arch == mips64el or arch == mips or arch == mips64) and not simulator_run'
+
['arch == arm and not simulator_run', {
# Too slow on chromebooks.
'tests/br_table': [SKIP],
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698