diff options
author | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-07-19 15:37:58 +0300 |
commit | a990de90fe41456a23e58bd087d2f107d321f3a1 (patch) | |
tree | 15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/object/tests/read/coff.rs | |
parent | 3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff) | |
download | fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip |
Deleted vendor folder
Diffstat (limited to 'vendor/object/tests/read/coff.rs')
-rw-r--r-- | vendor/object/tests/read/coff.rs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/object/tests/read/coff.rs b/vendor/object/tests/read/coff.rs deleted file mode 100644 index dcf3b3c..0000000 --- a/vendor/object/tests/read/coff.rs +++ /dev/null @@ -1,23 +0,0 @@ -use object::{pe, read, Object, ObjectSection}; -use std::fs; -use std::path::PathBuf; - -#[cfg(feature = "coff")] -#[test] -fn coff_extended_relocations() { - let path_to_obj: PathBuf = ["testfiles", "coff", "relocs_overflow.o"].iter().collect(); - let contents = fs::read(&path_to_obj).expect("Could not read relocs_overflow.o"); - let file = - read::coff::CoffFile::<_>::parse(&contents[..]).expect("Could not parse relocs_overflow.o"); - let code_section = file - .section_by_name(".text") - .expect("Could not find .text section in relocs_overflow.o"); - match code_section.flags() { - object::SectionFlags::Coff { characteristics } => { - assert!(characteristics & pe::IMAGE_SCN_LNK_NRELOC_OVFL != 0) - } - _ => panic!("Invalid section flags flavour."), - }; - let relocations = code_section.relocations().collect::<Vec<_>>(); - assert_eq!(relocations.len(), 65536); -} |