From e51b9e42b68c243dbc9b472f7c64c2c0fe821311 Mon Sep 17 00:00:00 2001 From: James Henderson Date: Thu, 23 May 2019 10:17:10 +0000 Subject: [llvm-objdump][test] Improve testing of some switches #2 This patch focuses on adding additional testing for the --source switch. For reference, the source-interleave-x86_64.ll test file has been split into two parts - the input (shared with the other tests) and the test itself. Reviewed by: MaskRay, rupprecht, grimar Differential Revision: https://reviews.llvm.org/D61996 llvm-svn: 361479 --- .../X86/source-interleave-relative-paths.test | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test (limited to 'llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test') diff --git a/llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test b/llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test new file mode 100644 index 00000000000..f9c69dfc0c0 --- /dev/null +++ b/llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test @@ -0,0 +1,36 @@ +## Test that llvm-objdump prints source and disassembly for relative directory +## paths for appropriate working directories. We also test that when the directory +## string is empty the behaviour is the same as the current working directory. + +# RUN: mkdir -p %t/a/b +# RUN: cp %p/Inputs/source-interleave-x86_64.c %t/a/source-interleave-x86_64.c + +# RUN: sed -e "s,SRC_COMPDIR,a,g" %p/Inputs/source-interleave.ll > %t.ll +# RUN: sed -e "s,SRC_COMPDIR,,g" %p/Inputs/source-interleave.ll > %t2.ll +# RUN: sed -e "s,SRC_COMPDIR,.,g" %p/Inputs/source-interleave.ll > %t3.ll +# RUN: sed -e "s,SRC_COMPDIR,..,g" %p/Inputs/source-interleave.ll > %t4.ll + +# RUN: llc -o %t/a/a.o -filetype=obj -mtriple=x86_64-pc-linux %t.ll +# RUN: llc -o %t/a/b.o -filetype=obj -mtriple=x86_64-pc-linux %t2.ll +# RUN: llc -o %t/a/c.o -filetype=obj -mtriple=x86_64-pc-linux %t3.ll +# RUN: llc -o %t/a/d.o -filetype=obj -mtriple=x86_64-pc-linux %t4.ll + +# RUN: cd %t +# RUN: llvm-objdump --source a/a.o | FileCheck %s --check-prefixes=CHECK,SOURCE +# RUN: llvm-objdump --source a/b.o | FileCheck %s --implicit-check-not=main +# RUN: llvm-objdump --source a/c.o | FileCheck %s --implicit-check-not=main +# RUN: llvm-objdump --source a/d.o | FileCheck %s --implicit-check-not=main +# RUN: cd a +# RUN: llvm-objdump --source a.o | FileCheck %s --implicit-check-not=main +# RUN: llvm-objdump --source b.o | FileCheck %s --check-prefixes=CHECK,SOURCE +# RUN: llvm-objdump --source c.o | FileCheck %s --check-prefixes=CHECK,SOURCE +# RUN: llvm-objdump --source d.o | FileCheck %s --implicit-check-not=main +# RUN: cd b +# RUN: llvm-objdump --source ../a.o | FileCheck %s --implicit-check-not=main +# RUN: llvm-objdump --source ../b.o | FileCheck %s --implicit-check-not=main +# RUN: llvm-objdump --source ../c.o | FileCheck %s --implicit-check-not=main +# RUN: llvm-objdump --source ../d.o | FileCheck %s --check-prefixes=CHECK,SOURCE + +# CHECK: 0000000000000010 main: +# SOURCE-NEXT: ; int main() { +# CHECK-NEXT: 10: 55 pushq %rbp -- cgit v1.2.3