diff options
Diffstat (limited to 'lld/test/elf/options/dynamic-linker.test')
-rw-r--r-- | lld/test/elf/options/dynamic-linker.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lld/test/elf/options/dynamic-linker.test b/lld/test/elf/options/dynamic-linker.test index 3d8feeb6e30..6b56f17c677 100644 --- a/lld/test/elf/options/dynamic-linker.test +++ b/lld/test/elf/options/dynamic-linker.test @@ -1,12 +1,12 @@ # This tests the functionality of specifying dynamic-linker argument in the # command line -RUN: lld -flavor gnu -target x86_64 --dynamic-linker="/xyz.so" \ +RUN: lld -flavor old-gnu -target x86_64 --dynamic-linker="/xyz.so" \ RUN: %p/../Inputs/foo.o.x86-64 --noinhibit-exec -o %t RUN: llvm-objdump -s %t | FileCheck -check-prefix=DYNAMICINTERP1 %s -RUN: lld -flavor gnu -target x86_64 --dynamic-linker="" \ +RUN: lld -flavor old-gnu -target x86_64 --dynamic-linker="" \ RUN: %p/../Inputs/foo.o.x86-64 --noinhibit-exec -o %t1 RUN: llvm-objdump -s %t1 | FileCheck -check-prefix=DYNAMICINTERP2 %s -RUN: lld -flavor gnu -target x86_64 -dynamic-linker /xyz.so \ +RUN: lld -flavor old-gnu -target x86_64 -dynamic-linker /xyz.so \ RUN: %p/../Inputs/foo.o.x86-64 --noinhibit-exec -o %t2 RUN: llvm-objdump -s %t2 | FileCheck -check-prefix=DYNAMICINTERP1 %s |