mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
ae77811c4d
# Conflicts: # build/emtests.rs # src/emtests/mod.rs |
||
---|---|---|
.. | ||
env.c | ||
env.output | ||
env.wasm | ||
localtime.c | ||
localtime.wasm | ||
printf.c | ||
printf.output | ||
printf.wasm | ||
puts.c | ||
puts.output | ||
puts.wasm | ||
README.md |
This directory contains tests for unit testing each of the functions/syscalls that Emscripten will be doing.
If you want to generate the wasm files, you will just need to:
make emtests
This process will do something similar to:
cc localtime.c -o localtime.out
# Execute the out file and save its output
./localtime.out > ./localtime.output
rm localtime.out
# Generate the .wasm file
emcc localtime.c -o localtime.js
# Delte the js file, as we don't need it
rm localtime.js