#[cfg(all(target_arch = "x86_64", target_os = "linux"))]
#[test]
fn test_ocall() {
let stream = crate::macro_ocall::patch(syn::parse_quote! {
pub trait Ocall {
#[ocall(id = 101, encode_input, encode_output)]
fn call_slow(a: i32, b: i32) -> i32;
#[ocall(id = 103, encode_output)]
fn call_fi(a: i32, b: i32) -> i32;
#[ocall(id = 104, encode_input)]
fn call_fo(a: i32, b: i32) -> i32;
#[ocall(id = 102)]
fn poll_fi_fo(a: i32, b: i32) -> i32;
#[ocall(id = 109)]
fn poll_read(waker_id: i32, resource_id: i32, data: &mut [u8]) -> Result<u32>;
}
});
insta::assert_snapshot!(rustfmt_snippet::rustfmt_token_stream(&stream).unwrap())
}
#[test]
fn test_main() {
let stream = crate::macro_main::patch(syn::parse_quote! {
async fn the_main() {
sleep(1).await
}
});
insta::assert_snapshot!(rustfmt_snippet::rustfmt_token_stream(&stream).unwrap())
}