Lines Matching full:magic
14 Magic: "[[MAGIC=!<arch>\n]]"
33 ## Check we can specify magic bytes of size greater than the normal size (size of "!<arch>\n").
36 # RUN: wc -c < %t.magic2.a | FileCheck %s --check-prefix=MAGIC-SIZE-GR
37 # RUN: od -t x1 -v %t.magic2.a | FileCheck %s --ignore-case --check-prefix=MAGIC-DATA-GR
39 # MAGIC-SIZE-GR: 9{{$}}
40 # MAGIC-DATA-GR: 31 32 33 34 35 36 37 38 39
42 ## Check we can specify magic bytes of size less than the normal size (size of "!<arch>\n").
45 # RUN: wc -c < %t.magic3.a | FileCheck %s --check-prefix=MAGIC-SIZE-LESS
46 # RUN: od -t x1 -v %t.magic3.a | FileCheck %s --ignore-case --check-prefix=MAGIC-DATA-LESS
48 # MAGIC-SIZE-LESS: 7{{$}}
49 # MAGIC-DATA-LESS: 31 32 33 34 35 36 37
52 ## Check we are able to omit the "Magic" key and this defaults to "!<arch>\n".