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

Side by Side Diff: test/cctest/cctest.status

Issue 2034093002: Implement WASM big-endian support (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Small fixes. Rebase to master Created 4 years, 6 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 unified diff | Download patch
« no previous file with comments | « src/wasm/wasm-interpreter.cc ('k') | test/cctest/wasm/test-run-wasm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 # BUG(v8:2999,v8:4751). 288 # BUG(v8:2999,v8:4751).
289 'test-cpu-profiler/CollectDeoptEvents': [SKIP], 289 'test-cpu-profiler/CollectDeoptEvents': [SKIP],
290 'test-cpu-profiler/FunctionCallSample': [SKIP], 290 'test-cpu-profiler/FunctionCallSample': [SKIP],
291 'test-cpu-profiler/JsNativeJsRuntimeJsSample': [SKIP], 291 'test-cpu-profiler/JsNativeJsRuntimeJsSample': [SKIP],
292 'test-cpu-profiler/JsNativeJsRuntimeJsSampleMultiple': [SKIP], 292 'test-cpu-profiler/JsNativeJsRuntimeJsSampleMultiple': [SKIP],
293 'test-cpu-profiler/JsNativeJsSample': [SKIP], 293 'test-cpu-profiler/JsNativeJsSample': [SKIP],
294 'test-cpu-profiler/JsNative1JsNative2JsSample': [SKIP], 294 'test-cpu-profiler/JsNative1JsNative2JsSample': [SKIP],
295 }], # 'system == windows' 295 }], # 'system == windows'
296 296
297 ############################################################################## 297 ##############################################################################
298 ['byteorder == big', {
299 # TODO(mips-team): Fix Wasm for big-endian.
300 'test-run-wasm-module/Run_WasmModule_CallAdd': [SKIP],
301 'test-run-wasm-module/Run_WasmModule_CallMain_recursive': [SKIP],
302 'test-run-wasm-module/Run_WasmModule_ReadLoadedDataSegment': [SKIP],
303 'test-run-wasm-module/Run_WasmModule_Return114': [SKIP],
304 'test-run-wasm-module/Run_WasmModule_CheckMemoryIsZero': [SKIP],
305 'test-run-wasm-module/Run_WasmModule_Global': [SKIP],
306 'test-run-wasm/RunWasmCompiled_Int32LoadInt16_signext': [SKIP],
307 'test-run-wasm/RunWasmCompiled_Int32LoadInt16_zeroext': [SKIP],
308 'test-run-wasm/RunWasmCompiled_MixedGlobals': [SKIP],
309 'test-run-wasm-64/RunWasmCompiled_I64*': [SKIP],
310 'test-run-wasm-64/RunWasmCompiled_LoadStoreI64_sx': [SKIP],
311 'test-run-wasm-64/Run_TestI64WasmRunner': [SKIP],
312 'test-run-wasm-64/RunWasmCompiled_Call_Int64Sub': [SKIP],
313 'test-run-wasm-64/RunWasmCompiled_MemI64_Sum': [SKIP],
314 }], # 'byteorder == big'
315
316 ##############################################################################
317 ['arch == arm', { 298 ['arch == arm', {
318 299
319 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL], 300 'test-cpu-profiler/CollectDeoptEvents': [PASS, FAIL],
320 301
321 # BUG(355): Test crashes on ARM. 302 # BUG(355): Test crashes on ARM.
322 'test-log/ProfLazyMode': [SKIP], 303 'test-log/ProfLazyMode': [SKIP],
323 304
324 # BUG(1075): Unresolved crashes. 305 # BUG(1075): Unresolved crashes.
325 'test-serialize/StartupSerializerOnce': [SKIP], 306 'test-serialize/StartupSerializerOnce': [SKIP],
326 'test-serialize/StartupSerializerTwice': [SKIP], 307 'test-serialize/StartupSerializerTwice': [SKIP],
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 'test-api/TurboAsmDisablesNeuter': [FAIL], 551 'test-api/TurboAsmDisablesNeuter': [FAIL],
571 552
572 # TODO(mvstanton,4900): CHECK(!g_function->is_compiled()); 553 # TODO(mvstanton,4900): CHECK(!g_function->is_compiled());
573 'test-heap/TestUseOfIncrementalBarrierOnCompileLazy': [FAIL], 554 'test-heap/TestUseOfIncrementalBarrierOnCompileLazy': [FAIL],
574 555
575 # BUG(4751). Flaky with Ignition. 556 # BUG(4751). Flaky with Ignition.
576 'test-cpu-profiler/JsNativeJsSample': [SKIP], 557 'test-cpu-profiler/JsNativeJsSample': [SKIP],
577 }], # ignition or ignition_turbofan 558 }], # ignition or ignition_turbofan
578 559
579 ] 560 ]
OLDNEW
« no previous file with comments | « src/wasm/wasm-interpreter.cc ('k') | test/cctest/wasm/test-run-wasm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698