wasmer/lib/wasi/wasitests/fs_sandbox_test.rs
2019-05-22 15:57:12 -07:00

11 lines
285 B
Rust

fn main() {
#[cfg(target = "wasi")]
let result = std::fs::read_dir("..");
#[cfg(not(target = "wasi"))]
let result: Result<(), String> = Err("placeholder".to_string());
println!(
"Reading the parent directory was okay? {:?}",
result.is_ok()
);
}