@@ -35,11 +35,11 @@ def _check_test(self, type):
35
35
the given string is in the parsed result"""
36
36
file_signatures = {
37
37
"elf" : (b"\x7f \x45 \x4c \x46 \x02 \x01 \x01 \x03 \n " , True , ".out" ),
38
- "mach_o_32" : (b"\xFE \xED \xFA \xCE \x00 \x00 \x00 \x00 " , True , ".out" ),
39
- "mach_o_64" : (b"\xFE \xED \xFA \xCF \x00 \x00 \x00 \x00 " , True , ".out" ),
40
- "mach_o_universal" : (b"\xCA \xFE \xBA \xBE \x00 \x00 \x00 \x00 " , True , ".out" ),
41
- "ios_arm" : (b"\xCF \xFA \xED \xFE \x00 \x00 \x00 \x00 " , True , ".out" ),
42
- "wasm" : (b"yoyo\x00 \x61 \x73 \x6D \x01 \x00 \x00 \x00 " , True , ".out" ),
38
+ "mach_o_32" : (b"\xfe \xed \xfa \xce \x00 \x00 \x00 \x00 " , True , ".out" ),
39
+ "mach_o_64" : (b"\xfe \xed \xfa \xcf \x00 \x00 \x00 \x00 " , True , ".out" ),
40
+ "mach_o_universal" : (b"\xca \xfe \xba \xbe \x00 \x00 \x00 \x00 " , True , ".out" ),
41
+ "ios_arm" : (b"\xcf \xfa \xed \xfe \x00 \x00 \x00 \x00 " , True , ".out" ),
42
+ "wasm" : (b"yoyo\x00 \x61 \x73 \x6d \x01 \x00 \x00 \x00 " , True , ".out" ),
43
43
"c" : (b"#include <stdio.h>" , False , ".c" ),
44
44
"single_byte" : (b"1" , False , ".txt" ),
45
45
"windows" : (b"MZ\x90 \x00 " , True , ".dll" ),
0 commit comments