diff options
| author | James Henderson <jh7370@my.bristol.ac.uk> | 2019-05-23 10:17:10 +0000 |
|---|---|---|
| committer | James Henderson <jh7370@my.bristol.ac.uk> | 2019-05-23 10:17:10 +0000 |
| commit | e51b9e42b68c243dbc9b472f7c64c2c0fe821311 (patch) | |
| tree | a3ff6fc774757d83e9edd0f46ca5020df3abf324 /llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test | |
| parent | f5d9d2390592f36e594d8e9f3d4b4cc1733193d3 (diff) | |
| download | bcm5719-llvm-e51b9e42b68c243dbc9b472f7c64c2c0fe821311.tar.gz bcm5719-llvm-e51b9e42b68c243dbc9b472f7c64c2c0fe821311.zip | |
[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
Diffstat (limited to 'llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test')
| -rw-r--r-- | llvm/test/tools/llvm-objdump/X86/source-interleave-relative-paths.test | 36 |
1 files changed, 36 insertions, 0 deletions
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 |

