2018-05-29 21:58:59 +02:00
|
|
|
# RUN: yaml2obj %s > %t.wasm
|
2018-05-30 05:26:28 +02:00
|
|
|
# RUN: echo -e -n "\x01" >> %t.wasm
|
2018-05-29 21:58:59 +02:00
|
|
|
# Append a new section but truncate the encoding of the section size
|
|
|
|
# RUN: not llvm-objdump -h %t.wasm 2>&1 | FileCheck %s -check-prefix=CHECK-LEB-DECODE
|
|
|
|
|
|
|
|
!WASM
|
|
|
|
FileHeader:
|
|
|
|
Version: 0x00000001
|
|
|
|
|
|
|
|
# CHECK-LEB-DECODE: malformed uleb128, extends past end
|
|
|
|
|
|
|
|
# RUN: echo -en "\x99hello" >> %t.wasm
|
|
|
|
# Append a section size that extends beyond the end of the file
|
|
|
|
# RUN: not llvm-objdump -h %t.wasm 2>&1 | FileCheck %s -check-prefix=CHECK-SECTION-SIZE
|
|
|
|
|
|
|
|
# CHECK-SECTION-SIZE: '{{.*}}.wasm': Section too large
|