2020-01-22 02:02:25 +01:00
|
|
|
# RUN: yaml2obj %s -o %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
|
2020-02-12 08:01:35 +01:00
|
|
|
# RUN: not --crash llvm-objdump -h %t.wasm 2>&1 | FileCheck %s -check-prefix=CHECK-LEB-DECODE
|
2018-05-29 21:58:59 +02:00
|
|
|
|
|
|
|
!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
|
|
|
|
|
2021-01-22 16:46:28 +01:00
|
|
|
# CHECK-SECTION-SIZE: '{{.*}}.wasm': section too large
|
2019-04-20 02:11:46 +02:00
|
|
|
|
2020-01-22 02:02:25 +01:00
|
|
|
# RUN: yaml2obj %s -o %t.wasm
|
2019-04-20 02:11:46 +02:00
|
|
|
# # Append an section with invalid type (type 0x20, size 0x1, content 0x0)
|
|
|
|
# RUN: echo -e -n "\x20\x01\x00" >> %t.wasm
|
|
|
|
# RUN: not llvm-objdump -h %t.wasm 2>&1 | FileCheck %s -check-prefix=CHECK-SECTION-TYPE
|
2021-01-22 16:46:28 +01:00
|
|
|
# CHECK-SECTION-TYPE: '{{.*}}.wasm': invalid section type: 32
|