Function run

Source
#[no_mangle]
pub unsafe extern "C" fn run(
    error_buf: *mut u8,
    error_size: usize,
    smoke_module: *const u8,
    smoke_size: usize,
    simple_add_module: *const u8,
    simple_add_size: usize,
    simple_host_fn_module: *const u8,
    simple_host_fn_size: usize,
) -> usize
Expand description

Entrypoint of this embedding.

This takes a number of parameters which are the precompiled module AOT images that are run for each of the various tests below. The first parameter is also where to put an error string, if any, if anything fails.