mirror of
https://github.com/openharmony/third_party_rust_rustix.git
synced 2026-07-21 02:05:28 -04:00
b72d4291d2
Fixes #423.
7 lines
208 B
Rust
7 lines
208 B
Rust
#[test]
|
|
fn test_proc_funcs() {
|
|
let _maps = rustix::io::proc_self_maps().unwrap();
|
|
let _status = rustix::io::proc_self_status().unwrap();
|
|
let _pagemap = rustix::io::proc_self_pagemap().unwrap();
|
|
}
|