You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to wasi.fyi libc test suite, when unreachable is reached, like when compiling an abort() function with WASI, the error code return should be 132. Wasmer return 1.
The C program is here
#include <stdlib.h>
int main(void) {
abort();
return 0;
}
wich gives the attached wasm file. But basically, it's just an unreachable reached. abort.zip
Describe the bug
According to wasi.fyi libc test suite, when
unreachable
is reached, like when compiling anabort()
function with WASI, the error code return should be132
. Wasmer return1
.The C program is here
wich gives the attached wasm file. But basically, it's just an
unreachable
reached.abort.zip
Same issue with the "assert-false" test:
The text was updated successfully, but these errors were encountered: