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