1RUN: grep '^ADDR:' %s | sed -s 's/ADDR: //' \
2RUN: 	 | llvm-symbolizer --inlining --relative-address -obj="%p/Inputs/coff-exports.exe" \
3RUN:	 | FileCheck %s
4
5This test relies on UnDecorateSymbolName, which is Win32-only.
6REQUIRES: system-windows
7REQUIRES: target-windows
8FIXME: This test depends on host, not target.
9
10ADDR: 0x500A
11ADDR: 0x5038
12ADDR: 0x504B
13
14We get the expected stack trace, except 'foo' appears for the 'bar' frame
15because 'bar' isn't in the export table.
16
17CHECK: foo(void)
18CHECK: ??:0:0
19CHECK: foo(void)
20CHECK: ??:0:0
21CHECK: main
22CHECK: ??:0:0
23