You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/test/integration-test/src/tests/elf.rs

10 lines
285 B
Rust

use object::{Object as _, ObjectSymbol as _};
use test_log::test;
#[test]
fn test_maps() {
let obj_file = object::File::parse(crate::MAP_TEST).unwrap();
assert!(obj_file.section_by_name("maps").is_some());
assert!(obj_file.symbols().any(|sym| sym.name() == Ok("BAR")));
}