Skip to content

Commit 8fac63c

Browse files
committed
Remove temporary test
1 parent 0fb7f39 commit 8fac63c

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

objdiff-core/tests/arch_ppc.rs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -99,17 +99,3 @@ fn read_vmx128_coff() {
9999
let output = common::display_diff(&obj, &diff, symbol_idx, &diff_config);
100100
insta::assert_snapshot!(output);
101101
}
102-
103-
#[test]
104-
#[cfg(feature = "ppc")]
105-
fn read_dummy() {
106-
let diff_config = diff::DiffObjConfig { combine_data_sections: true, ..Default::default() };
107-
let obj = obj::read::parse(include_object!("data/ppc/dummy.obj"), &diff_config).unwrap();
108-
insta::assert_debug_snapshot!(obj);
109-
let symbol_idx =
110-
obj.symbols.iter().position(|s| s.name == "?FloatingPointExample@@YAXXZ").unwrap();
111-
let diff = diff::code::no_diff_code(&obj, symbol_idx, &diff_config).unwrap();
112-
insta::assert_debug_snapshot!(diff.instruction_rows);
113-
let output = common::display_diff(&obj, &diff, symbol_idx, &diff_config);
114-
insta::assert_snapshot!(output);
115-
}

0 commit comments

Comments
 (0)