diff options
author | Steven Wu <stevenwu@apple.com> | 2019-11-05 08:57:34 -0800 |
---|---|---|
committer | Steven Wu <stevenwu@apple.com> | 2019-11-05 09:07:06 -0800 |
commit | bc496677d0ecc24e4372b714849b5ecc8636b3a8 (patch) | |
tree | 3e44a28b196e6800a2f906ab3d4359c0ec7b3b64 | |
parent | 5ad0103d8a04cb066dfae4fc20b0dfcd9413f4d4 (diff) | |
download | bcm5719-llvm-bc496677d0ecc24e4372b714849b5ecc8636b3a8.tar.gz bcm5719-llvm-bc496677d0ecc24e4372b714849b5ecc8636b3a8.zip |
[Object][MachO] Rewrite macho-invalid-fat-arch-size into YAML
Rewrite one of the invalid macho test input file with YAML file. The
original invalid macho is breaking our internal test infrastusture
because it is too broken to be copy around.
rdar://problem/56879982
-rw-r--r-- | llvm/test/Object/Inputs/macho-invalid-fat-arch-size | bin | 56 -> 0 bytes | |||
-rw-r--r-- | llvm/test/Object/Inputs/macho-invalid-fat-arch-size.yaml | 12 | ||||
-rw-r--r-- | llvm/test/Object/macho-invalid.test | 4 |
3 files changed, 14 insertions, 2 deletions
diff --git a/llvm/test/Object/Inputs/macho-invalid-fat-arch-size b/llvm/test/Object/Inputs/macho-invalid-fat-arch-size Binary files differdeleted file mode 100644 index dfd154c88e3..00000000000 --- a/llvm/test/Object/Inputs/macho-invalid-fat-arch-size +++ /dev/null diff --git a/llvm/test/Object/Inputs/macho-invalid-fat-arch-size.yaml b/llvm/test/Object/Inputs/macho-invalid-fat-arch-size.yaml new file mode 100644 index 00000000000..f7bf00d7c13 --- /dev/null +++ b/llvm/test/Object/Inputs/macho-invalid-fat-arch-size.yaml @@ -0,0 +1,12 @@ +--- !fat-mach-o +FatHeader: + magic: 0xCAFEBABE + nfat_arch: 1 +FatArchs: + - cputype: 0x00000007 + cpusubtype: 0x00000003 + offset: 0x000000000000020 + size: 32 + align: 2 +Slices: +... diff --git a/llvm/test/Object/macho-invalid.test b/llvm/test/Object/macho-invalid.test index 1cbd7469d73..2206c678105 100644 --- a/llvm/test/Object/macho-invalid.test +++ b/llvm/test/Object/macho-invalid.test @@ -491,8 +491,8 @@ INVALID-EXPORT-OVERLAP: macho-invalid-export-overlap': truncated or malformed ob RUN: not llvm-objdump --macho --universal-headers %p/Inputs/macho-invalid-fat-header 2>&1 | FileCheck -check-prefix INVALID-FAT-HEADER %s INVALID-FAT-HEADER: macho-invalid-fat-header': truncated or malformed fat file (contains zero architecture types) -RUN: not llvm-objdump --macho --universal-headers %p/Inputs/macho-invalid-fat-arch-size 2>&1 | FileCheck -check-prefix INVALID-FAT-ARCH-SIZE %s -INVALID-FAT-ARCH-SIZE: macho-invalid-fat-arch-size': truncated or malformed fat file (offset plus size of cputype (7) cpusubtype (3) extends past the end of the file) +RUN: yaml2obj %p/Inputs/macho-invalid-fat-arch-size.yaml -o - | not llvm-objdump --macho --universal-headers - 2>&1 | FileCheck -check-prefix INVALID-FAT-ARCH-SIZE %s +INVALID-FAT-ARCH-SIZE: '-': truncated or malformed fat file (offset plus size of cputype (7) cpusubtype (3) extends past the end of the file) RUN: not llvm-objdump --macho --universal-headers %p/Inputs/macho-invalid-fat-arch-bigalign 2>&1 | FileCheck -check-prefix INVALID-FAT-ARCH-BIGALIGN %s INVALID-FAT-ARCH-BIGALIGN: macho-invalid-fat-arch-bigalign': truncated or malformed fat file (align (2^212) too large for cputype (7) cpusubtype (3) (maximum 2^15)) |