diff options
Diffstat (limited to 'llvm/test/tools/llvm-lib/duplicate.test')
-rw-r--r-- | llvm/test/tools/llvm-lib/duplicate.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-lib/duplicate.test b/llvm/test/tools/llvm-lib/duplicate.test new file mode 100644 index 00000000000..3c503ca7f58 --- /dev/null +++ b/llvm/test/tools/llvm-lib/duplicate.test @@ -0,0 +1,14 @@ +If the same file is specified more than once as an input file, +llvm-lib should ignore all but the first occurrence of the file. + +RUN: rm -rf %t +RUN: mkdir -p %t + +RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/foo.o %S/Inputs/a.s +RUN: llvm-mc -triple=x86_64-pc-windows-msvc -filetype=obj -o %t/bar.o %S/Inputs/b.s +RUN: llvm-lib -out:%t/foo.lib %t/foo.o %t/foo.o %t/bar.o + +RUN: llvm-ar t %t/foo.lib | FileCheck %s +CHECK: foo.o +CHECK-NOT: foo.o +CHECK: bar.o |