================ @@ -0,0 +1,94 @@ +# RUN: yaml2obj %s -o %t + +# RUN: not llvm-objcopy --pad-to=1 %t 2>&1 | FileCheck %s --check-prefix=NOT-BINARY +# NOT-BINARY: error: '--pad-to' is only supported for binary output + +# RUN: not llvm-objcopy -O binary --pad-to= %t 2>&1 | FileCheck %s --check-prefix=BAD-FORMAT +# BAD-FORMAT: error: --pad-to: bad number: + +# RUN: not llvm-objcopy -O binary --pad-to=x %t 2>&1 | FileCheck %s --check-prefix=BAD-INPUT +# BAD-INPUT: error: --pad-to: bad number: x + +# RUN: not llvm-objcopy -O binary --pad-to=0x1G %t 2>&1 | FileCheck %s --check-prefix=BAD-INPUT2 +# BAD-INPUT2: error: --pad-to: bad number: 0x1G + +# RUN: not llvm-objcopy -O binary --pad-to=ff %t 2>&1 | FileCheck %s --check-prefix=BAD-INPUT3 +# BAD-INPUT3: error: --pad-to: bad number: ff + +# RUN: not llvm-objcopy -O binary --pad-to=0x112233445566778899 %t 2>&1 | FileCheck %s --check-prefix=BAD-NUMBER +# BAD-NUMBER: error: --pad-to: bad number: 0x112233445566778899 + +## Save the baseline, not padded output. +# RUN: llvm-objcopy -O binary %t %t.bin + +## Pad to an address smaller than the binary size. +# RUN: llvm-objcopy -O binary --pad-to=0x20 %t %t-p1 +# RUN: cmp %t.bin %t-p1 +# RUN: llvm-objcopy -O binary --pad-to=0x200 %t %t-p2 +# RUN: cmp %t.bin %t-p2 + +## Pad all allocatable sections to a valid address. +# RUN: llvm-objcopy -O binary --pad-to=0x218 %t %t-pad-default +# RUN: od -v -Ax -t x1 %t-pad-default | FileCheck %s --check-prefix=DEFAULT --match-full-lines +# DEFAULT: 000000 11 22 33 44 55 66 00 00 00 00 00 00 00 00 00 00 +# DEFAULT-NEXT: 000010 77 88 99 aa 00 00 00 00 +# DEFAULT-NEXT: 000018 + +## Use a decimal number of padding address, verify it's not misunderstood. ---------------- jh7370 wrote:
```suggestion ## Use a decimal number for the padding address and verify it's not misunderstood. ``` https://github.com/llvm/llvm-project/pull/65815 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits