#wasm #assembly #web #tester #index #tool

app west

WebAssembly 测试工具

1 个不稳定版本

0.0.0 2019年4月4日

#17#tester

MIT 许可协议

3KB

West🌵

我的简单 WebAssembly 测试器。它会遍历以 test 开头的所有导出函数并调用这些函数。

  • 如果返回 0,则假定测试通过
  • 如果返回非零值,则假定测试失败,该值表示一个 C 字符串的开始,说明出了什么问题

只需创建一个 index.html

<script src="https://unpkg.com/@web-dom/west@latest/west.js"></script>
<script>
  west("test.wasm");
</script>

在此处查看演示 https://web-dom.github.io/west/

如果我有其他导入呢?

其他导入可以被模拟,以便你可以使用附加参数进行任何你想要的操作

west("test.wasm",{
  my_imported_function(){
    //do nothing during tests
  });

无运行时依赖