
This change migrates most llvm-symbolizer tests away from reading input via stdin and instead using --obj + positional arguments for the file and addresses respectively, which makes the tests easier to read. One exception is the test test/tools/llvm-symbolizer/pdb/pdb.test, which was doing some manipulation on the input addresses. This patch simplifies this somewhat, but it still reads from stdin. More changes to follow to simplify/break-up other tests. Reviewed by: dblaikie Differential Revision: https://reviews.llvm.org/D57441 llvm-svn: 352752
29 lines
631 B
C
29 lines
631 B
C
#include <stdio.h>
|
|
|
|
int inc(int a) {
|
|
return a + 1;
|
|
}
|
|
|
|
int main() {
|
|
printf("%p\n", inc);
|
|
return 0;
|
|
}
|
|
|
|
// RUN: rm -rf %t && mkdir -p %t
|
|
// RUN: cp %s %t/
|
|
// RUN: cp %p/Inputs/print_context.o %t
|
|
// RUN: cd %t
|
|
// RUN: llvm-symbolizer -obj=%t/print_context.o 0x0 -print-source-context-lines=5 | FileCheck %s
|
|
|
|
// Inputs/print_context.o built with plain -g -c from this source file
|
|
// Specifying -Xclang -fdebug-compilation-dir -Xclang . to make the debug info
|
|
// location independent.
|
|
|
|
// CHECK: inc
|
|
// CHECK: print_context.c:3
|
|
// CHECK: 1 : #include
|
|
// CHECK: 2 :
|
|
// CHECK: 3 >: int inc
|
|
// CHECK: 4 : return
|
|
// CHECK: 5 : }
|