tree: d50d5f82141e876cdda2e89eadea4ef7e13007fe [path history] [tgz]
  1. simd/
  2. .gitignore
  3. address.wast
  4. align.wast
  5. binary-leb128.wast
  6. binary.wast
  7. block.wast
  8. br.wast
  9. br_if.wast
  10. br_table.wast
  11. bulk.wast
  12. call.wast
  13. call_indirect.wast
  14. comments.wast
  15. const.wast
  16. conversions.wast
  17. custom.wast
  18. data.wast
  19. elem.wast
  20. endianness.wast
  21. exports.wast
  22. f32.wast
  23. f32_bitwise.wast
  24. f32_cmp.wast
  25. f64.wast
  26. f64_bitwise.wast
  27. f64_cmp.wast
  28. fac.wast
  29. float_exprs.wast
  30. float_literals.wast
  31. float_memory.wast
  32. float_misc.wast
  33. forward.wast
  34. func.wast
  35. func_ptrs.wast
  36. global.wast
  37. i32.wast
  38. i64.wast
  39. if.wast
  40. imports.wast
  41. inline-module.wast
  42. int_exprs.wast
  43. int_literals.wast
  44. labels.wast
  45. left-to-right.wast
  46. linking.wast
  47. load.wast
  48. local_get.wast
  49. local_set.wast
  50. local_tee.wast
  51. loop.wast
  52. memory.wast
  53. memory_copy.wast
  54. memory_fill.wast
  55. memory_grow.wast
  56. memory_init.wast
  57. memory_redundancy.wast
  58. memory_size.wast
  59. memory_trap.wast
  60. names.wast
  61. nop.wast
  62. README.md
  63. ref_func.wast
  64. ref_is_null.wast
  65. ref_null.wast
  66. return.wast
  67. run.py
  68. script.wast
  69. select.wast
  70. skip-stack-guard-page.wast
  71. stack.wast
  72. start.wast
  73. store.wast
  74. switch.wast
  75. table-sub.wast
  76. table.wast
  77. table_copy.wast
  78. table_fill.wast
  79. table_get.wast
  80. table_grow.wast
  81. table_init.wast
  82. table_set.wast
  83. table_size.wast
  84. token.wast
  85. tokens.wast
  86. traps.wast
  87. type.wast
  88. unreachable.wast
  89. unreached-invalid.wast
  90. unreached-valid.wast
  91. unwind.wast
  92. utf8-custom-section-id.wast
  93. utf8-import-field.wast
  94. utf8-import-module.wast
  95. utf8-invalid-encoding.wast
test/core/README.md

This directory contains tests for the core WebAssembly semantics, as described in Semantics.md and specified by the spec interpreter.

Tests are written in the S-Expression script format defined by the interpreter.

The test suite can be run with the spec interpreter as follows:

./run.py --wasm <path-to-wasm-interpreter>

where the path points to the spec interpreter executable (or a tool that understands similar options). If the binary is in the working directory, this option can be omitted.

In addition, the option --js <path-to-js-interpreter> can be given to point to a stand-alone JavaScript interpreter supporting the WebAssembly API. If provided, all tests are also executed in JavaScript.