[LLD][COFF] Ignore DEBUG_S_XFGHASH_TYPE/VIRTUAL
[llvm-project.git] / lld / test / wasm / undefined-entry.test
bloba5bca16a0de0e53d330441c2593daa42a8e4ef4f
1 RUN: llvm-mc -filetype=obj -triple=wasm32-unknown-unknown %p/Inputs/ret32.s -o %t.ret32.o
2 RUN: not wasm-ld -o %t.wasm %t.ret32.o 2>&1 | FileCheck %s
3 RUN: not wasm-ld --allow-undefined -o %t.wasm %t.ret32.o 2>&1 | FileCheck %s
4 RUN: not wasm-ld -entry=foo -o %t.wasm %t.ret32.o 2>&1 | FileCheck %s -check-prefix=CHECK-CUSTOM
6 CHECK: error: entry symbol not defined (pass --no-entry to suppress): _start
7 CHECK-CUSTOM: error: entry symbol not defined (pass --no-entry to suppress): foo
9 RUN: wasm-ld --no-entry -o %t.wasm %t.ret32.o