Fix REQUIRES lines added in r226951 and add the x86 feature if the X86 target was...
authorFilipe Cabecinhas <me@filcab.net>
Sat, 24 Jan 2015 03:55:22 +0000 (03:55 +0000)
committerFilipe Cabecinhas <me@filcab.net>
Sat, 24 Jan 2015 03:55:22 +0000 (03:55 +0000)
llvm-svn: 226985

19 files changed:
lld/test/elf/Mips/base-address.test
lld/test/elf/ifunc.test
lld/test/elf/tls.test
lld/test/elf/x86_64-kinds.test
lld/test/lit.cfg
lld/test/mach-o/lazy-bind-x86_64.yaml
lld/test/pecoff/alternatename.test
lld/test/pecoff/armnt-blx23t.test
lld/test/pecoff/armnt-branch24t.test
lld/test/pecoff/armnt-mov32t-exec.test
lld/test/pecoff/armnt-movt32t.test
lld/test/pecoff/common-symbol.test
lld/test/pecoff/hello64.test
lld/test/pecoff/imagebase.test
lld/test/pecoff/importlib.test
lld/test/pecoff/lib.test
lld/test/pecoff/multi.test
lld/test/pecoff/reloc.test
lld/test/pecoff/reloc64.test

index 2e6fbaf..153cff8 100644 (file)
@@ -1,4 +1,4 @@
-# REQUIRES: Mips
+# REQUIRES: mips
 
 # Check executable base address configuration. Base address should be
 # equal to 0x400000 and the MIPS_BASE_ADDRESS dynamic tag's value should
index e0c08bd..e148d18 100644 (file)
@@ -1,4 +1,4 @@
-# REQUIRES: X86
+# REQUIRES: x86
 
 # This test checks that IRELATIVE relocations are created for symbols that
 # need relocation even for static links.
index 9a7e977..7dffe09 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # This tests verifies that TLS variables have correct offsets
 RUN: lld -flavor gnu -target x86_64-linux %p/Inputs/tls.x86-64 -static  \
 RUN: --output-filetype=yaml --noinhibit-exec | FileCheck %s -check-prefix=YAML
index 60e6901..4958605 100644 (file)
@@ -1,4 +1,4 @@
-REQUIRES: X86
+REQUIRES: x86
 
 RUN: lld -flavor gnu -target x86_64-linux -o %t1 %p/Inputs/relocs.x86-64 \
 RUN:   -e _start -static
index 0df6ac6..da1cc4a 100644 (file)
@@ -155,6 +155,8 @@ if re.search(r'ARM', llvm_config_output_list[2]):
     config.available_features.add('arm')
 if re.search(r'Mips', llvm_config_output_list[2]):
     config.available_features.add('mips')
+if re.search(r'X86', llvm_config_output_list[2]):
+    config.available_features.add('x86')
 llvm_config_cmd.wait()
 
 # Check if Windows resource file compiler exists.
index b817086..54d787c 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # RUN: lld -flavor darwin -arch x86_64 -macosx_version_min 10.8 %s -o %t  \
 # RUN:   %p/Inputs/libSystem.yaml
 # RUN: llvm-objdump -lazy-bind %t | FileCheck %s
index 03cf0f7..926a8ea 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # RUN: yaml2obj %p/Inputs/alternatename1.obj.yaml > %t1.obj
 # RUN: yaml2obj %p/Inputs/alternatename2.obj.yaml > %t2.obj
 # RUN: yaml2obj %p/Inputs/alternatename3.obj.yaml > %t3.obj
index 60f5a35..56639fa 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: ARM
-#
+# REQUIRES: arm
+
 # RUN: yaml2obj -format coff -o %t.obj %p/Inputs/armnt-blx23t.obj.yaml
 # RUN: llvm-objdump -d %t.obj | FileCheck %s -check-prefix BEFORE
 # RUN: lld -flavor link /entry:function /subsystem:console /out:%t.exe %t.obj
index c269033..1a727ed 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: ARM
-#
+# REQUIRES: arm
+
 # RUN: yaml2obj -format coff -o %t.obj %p/Inputs/armnt-branch24t.obj.yaml
 # RUN: llvm-objdump -d %t.obj | FileCheck %s -check-prefix BEFORE
 # RUN: lld -flavor link /entry:function /subsystem:console /out:%t.exe %t.obj
index 73ca145..de4feff 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: ARM
-#
+# REQUIRES: arm
+
 # RUN: yaml2obj -format coff -o %t.obj %p/Inputs/armnt-mov32t-exec.obj.yaml
 # RUN: llvm-objdump -d %t.obj | FileCheck %s -check-prefix BEFORE
 # RUN: lld -flavor link /out:%t.exe /subsystem:console /entry:get_function %t.obj
index 9009648..2ae47ef 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: ARM
-#
+# REQUIRES: arm
+
 # RUN: yaml2obj -format coff -o %t.obj %p/Inputs/armnt-mov32t.obj.yaml
 # RUN: llvm-objdump -d %t.obj | FileCheck %s -check-prefix BEFORE
 # RUN: lld -flavor link /entry:get_buffer /subsystem:console /out:%t.exe %t.obj
index a2ba5b1..49d4d87 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # RUN: yaml2obj %p/Inputs/common-symbol.obj.yaml > %t.obj
 #
 # RUN: lld -flavor link /machine:x64 /out:%t.exe /subsystem:console /force \
index 30a12fe..a631b55 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # RUN: yaml2obj %p/Inputs/hello64.obj.yaml > %t.obj
 
 # RUN: lld -flavor link /out:%t.exe /subsystem:windows /machine:x64 \
index 4ef0037..bb83e6b 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # RUN: yaml2obj %p/Inputs/imagebase.obj.yaml > %t.obj
 
 # RUN: lld -flavor link /out:%t1.exe /subsystem:console /entry:_start \
index 7f1ee6b..28e74f9 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # Verify that lld can handle .lib files. "main.obj" refers "var" and
 # "fn" defined in "vars.lib".
 #
index c8e0c0c..f435c11 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # Verify that lld can handle a library file.
 #
 # RUN: yaml2obj %p/Inputs/main.obj.yaml > %t.obj
index 5362f43..e0bfdba 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # Verify that lld can handle multiple input files.
 #
 # RUN: yaml2obj %p/Inputs/main.obj.yaml > %t1.obj
index a461074..46b7431 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # RUN: yaml2obj %p/Inputs/reloc.obj.yaml > %t.obj
 #
 # RUN: lld -flavor link /out:%t.exe /subsystem:console /force /opt:noref \
index ae25fe5..fc38bff 100644 (file)
@@ -1,5 +1,5 @@
-# REQUIRES: X86
-#
+# REQUIRES: x86
+
 # RUN: yaml2obj %p/Inputs/reloc64.obj.yaml > %t.obj
 
 # RUN: lld -flavor link /out:%t.exe /subsystem:console /machine:x64 \