[lld] r373178 - [ELF][test] Change llvm-readobj --arm-attributes to --arch-specific after r373125

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Sun Sep 29 21:24:36 PDT 2019


Author: maskray
Date: Sun Sep 29 21:24:35 2019
New Revision: 373178

URL: http://llvm.org/viewvc/llvm-project?rev=373178&view=rev
Log:
[ELF][test] Change llvm-readobj --arm-attributes to --arch-specific after r373125

Modified:
    lld/trunk/test/ELF/arm-attributes.s

Modified: lld/trunk/test/ELF/arm-attributes.s
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/test/ELF/arm-attributes.s?rev=373178&r1=373177&r2=373178&view=diff
==============================================================================
--- lld/trunk/test/ELF/arm-attributes.s (original)
+++ lld/trunk/test/ELF/arm-attributes.s Sun Sep 29 21:24:35 2019
@@ -3,11 +3,11 @@
 // RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi %s -o %t2.o
 
 // RUN: ld.lld %t1.o %t2.o -o %t
-// RUN: llvm-readobj --arm-attributes %t | FileCheck %s
+// RUN: llvm-readobj --arch-specific %t | FileCheck %s
 // RUN: ld.lld %t1.o %t2.o -shared -o %t2
-// RUN: llvm-readobj --arm-attributes %t2 | FileCheck %s
+// RUN: llvm-readobj --arch-specific %t2 | FileCheck %s
 // RUN: ld.lld %t1.o %t2.o -r -o %t3
-// RUN: llvm-readobj --arm-attributes %t3 | FileCheck %s
+// RUN: llvm-readobj --arch-specific %t3 | FileCheck %s
 
 // Check that we retain only 1 SHT_ARM_ATTRIBUTES section. At present we do not
 // try and merge or use the contents of SHT_ARM_ATTRIBUTES sections. We just




More information about the llvm-commits mailing list