mirror of https://github.com/pyodide/pyodide.git
76 lines
1.8 KiB
Python
76 lines
1.8 KiB
Python
|
import subprocess
|
||
|
from . import common
|
||
|
|
||
|
|
||
|
def test_emulate_function(tmpdir):
|
||
|
with tmpdir.as_cwd():
|
||
|
with open("library.c", "w") as f:
|
||
|
f.write(
|
||
|
"""\
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <setjmp.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
// This can be any function that has a signature not found in main.
|
||
|
__attribute__ ((noinline)) int indirect_function(int a, float b, int c, double d) {
|
||
|
return a;
|
||
|
}
|
||
|
|
||
|
typedef int (*type_iifid) (int, float, int, double);
|
||
|
|
||
|
void foo() {
|
||
|
// Hack to force inclusion of malloc
|
||
|
volatile int x = (int) malloc(1);
|
||
|
free((void *) x);
|
||
|
|
||
|
type_iifid fp = &indirect_function;
|
||
|
|
||
|
jmp_buf buf;
|
||
|
int i = setjmp(buf);
|
||
|
|
||
|
printf("%d\\n", i);
|
||
|
assert(fp(i, 0, 0, 0) == i);
|
||
|
|
||
|
if (i == 0) longjmp(buf, 1);
|
||
|
}
|
||
|
"""
|
||
|
)
|
||
|
with open("main.c", "w") as f:
|
||
|
f.write(common.MAIN_C)
|
||
|
|
||
|
subprocess.run(
|
||
|
[
|
||
|
"emcc",
|
||
|
"-s",
|
||
|
"SIDE_MODULE=1",
|
||
|
"library.c",
|
||
|
"-o",
|
||
|
"library.wasm",
|
||
|
"-s",
|
||
|
"EMULATE_FUNCTION_POINTER_CASTS=1",
|
||
|
"-s",
|
||
|
"EXPORT_ALL=1",
|
||
|
],
|
||
|
check=True,
|
||
|
env=common.env,
|
||
|
)
|
||
|
subprocess.run(
|
||
|
[
|
||
|
"emcc",
|
||
|
"-s",
|
||
|
"MAIN_MODULE=1",
|
||
|
"main.c",
|
||
|
"--embed-file",
|
||
|
"library.wasm",
|
||
|
"-s",
|
||
|
"EMULATE_FUNCTION_POINTER_CASTS=1",
|
||
|
],
|
||
|
check=True,
|
||
|
env=common.env,
|
||
|
)
|
||
|
out = subprocess.run(
|
||
|
["node", "a.out.js"], capture_output=True, check=True, env=common.env
|
||
|
)
|
||
|
assert out.stdout == b"hello from main\n0\n4\n"
|