[PATCH] D77659: [ELF][test] Add reproduce test for dependent libraries

Andrew Ng via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 8 05:24:24 PDT 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG3db215089f48: [ELF][test] Add reproduce test for dependent libraries (authored by andrewng).
Herald added a project: LLVM.

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D77659/new/

https://reviews.llvm.org/D77659

Files:
  lld/test/ELF/reproduce-deplibs.s


Index: lld/test/ELF/reproduce-deplibs.s
===================================================================
--- /dev/null
+++ lld/test/ELF/reproduce-deplibs.s
@@ -0,0 +1,23 @@
+# REQUIRES: x86, shell
+
+## The 'shell' requirement is to prevent this test from running by default on
+## Windows as the extraction of the tar archive can cause problems related to
+## path length limits.
+
+# RUN: rm -rf %t.dir
+# RUN: mkdir -p %t.dir
+# RUN: cd %t.dir
+# RUN: echo ".global foo; foo: ret" | \
+# RUN:   llvm-mc -filetype=obj -triple=x86_64 - -o foo.o
+# RUN: llvm-ar rc foo.a foo.o
+# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o bar.o
+
+# RUN: ld.lld bar.o -o /dev/null --reproduce repro.tar
+# RUN: tar xf repro.tar
+# RUN: cmp foo.a repro/%:t.dir/foo.a
+
+.globl _start
+_start:
+  call foo
+.section ".deplibs","MS", at llvm_dependent_libraries,1
+.asciz "foo.a"


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D77659.255985.patch
Type: text/x-patch
Size: 866 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200408/125c3d6b/attachment.bin>


More information about the llvm-commits mailing list