mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-25 18:33:24 +00:00
12 lines
274 B
Rust
12 lines
274 B
Rust
//! This test checks that visiting controlled resources in whitelist is allowed.
|
|
|
|
#![feature(once_cell)]
|
|
|
|
mod test_utils;
|
|
|
|
#[test]
|
|
fn regression() {
|
|
let stderr = run_cargo_component_cmd!();
|
|
assert!(!stderr.contains("access controlled entry point is disallowed"));
|
|
}
|