[llvm] 4c23e42 - Mark 4 tests added in 6d766c8bf9df as requiring an x86 backend as they fail when it is not present.

Douglas Yung via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 8 22:50:30 PST 2021


Author: Douglas Yung
Date: 2021-02-08T22:47:14-08:00
New Revision: 4c23e42fe5b4b93a9d440f95c7b463da53504dd4

URL: https://github.com/llvm/llvm-project/commit/4c23e42fe5b4b93a9d440f95c7b463da53504dd4
DIFF: https://github.com/llvm/llvm-project/commit/4c23e42fe5b4b93a9d440f95c7b463da53504dd4.diff

LOG: Mark 4 tests added in 6d766c8bf9df as requiring an x86 backend as they fail when it is not present.

This should fix buildbot failures like http://lab.llvm.org:8011/#/builders/107/builds/4469

Added: 
    

Modified: 
    llvm/test/DebugInfo/Symbolize/ELF/symtab-file.s
    llvm/test/DebugInfo/Symbolize/ELF/symtab-ifunc.s
    llvm/test/DebugInfo/Symbolize/ELF/symtab-ignored.s
    llvm/test/DebugInfo/Symbolize/ELF/symtab-notype.s

Removed: 
    


################################################################################
diff  --git a/llvm/test/DebugInfo/Symbolize/ELF/symtab-file.s b/llvm/test/DebugInfo/Symbolize/ELF/symtab-file.s
index 485345efc568..c4866037b0f8 100644
--- a/llvm/test/DebugInfo/Symbolize/ELF/symtab-file.s
+++ b/llvm/test/DebugInfo/Symbolize/ELF/symtab-file.s
@@ -3,6 +3,8 @@
 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t
 # RUN: llvm-symbolizer --obj=%t 0 1 2 | FileCheck %s
 
+# REQUIRES: x86-registered-target
+
 ## TODO Find the preceding STT_FILE symbol as the filename of a local symbol.
 # CHECK:       local1
 # CHECK-NEXT:  ??:0:0

diff  --git a/llvm/test/DebugInfo/Symbolize/ELF/symtab-ifunc.s b/llvm/test/DebugInfo/Symbolize/ELF/symtab-ifunc.s
index 382cbaf8ba2f..0c6b447e3a27 100644
--- a/llvm/test/DebugInfo/Symbolize/ELF/symtab-ifunc.s
+++ b/llvm/test/DebugInfo/Symbolize/ELF/symtab-ifunc.s
@@ -2,6 +2,8 @@
 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t
 # RUN: llvm-symbolizer --obj=%t 0 1
 
+# REQUIRES: x86-registered-target
+
 # CHECK:       g_ifunc
 # CHECK-NEXT:  ??:0:0
 # CHECK-EMPTY:

diff  --git a/llvm/test/DebugInfo/Symbolize/ELF/symtab-ignored.s b/llvm/test/DebugInfo/Symbolize/ELF/symtab-ignored.s
index 57454c04c6b6..9818e0a5450b 100644
--- a/llvm/test/DebugInfo/Symbolize/ELF/symtab-ignored.s
+++ b/llvm/test/DebugInfo/Symbolize/ELF/symtab-ignored.s
@@ -2,6 +2,8 @@
 # RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t
 # RUN: llvm-symbolizer --obj=%t 0 | FileCheck %s
 
+# REQUIRES: x86-registered-target
+
 # CHECK:       b
 # CHECK-NEXT:  ??:0:0
 # CHECK-EMPTY:

diff  --git a/llvm/test/DebugInfo/Symbolize/ELF/symtab-notype.s b/llvm/test/DebugInfo/Symbolize/ELF/symtab-notype.s
index 91ce8073a25d..80d152ed97ff 100644
--- a/llvm/test/DebugInfo/Symbolize/ELF/symtab-notype.s
+++ b/llvm/test/DebugInfo/Symbolize/ELF/symtab-notype.s
@@ -3,6 +3,8 @@
 # RUN: llvm-symbolizer --obj=%t --inlines 0 1 2 3 4 5 6 7 | FileCheck %s
 # RUN: llvm-symbolizer --obj=%t --no-inlines 0 1 2 3 4 5 6 7 | FileCheck %s
 
+# REQUIRES: x86-registered-target
+
 # CHECK:       _start
 # CHECK-NEXT:  ??:0:0
 # CHECK-EMPTY:


        


More information about the llvm-commits mailing list