]> granicus.if.org Git - clang/commitdiff
[NFC] Fix for InterfaceStubs tests (adding REQUIRES: x86-registered-target).
authorPuyan Lotfi <puyan@puyan.org>
Thu, 20 Jun 2019 18:28:21 +0000 (18:28 +0000)
committerPuyan Lotfi <puyan@puyan.org>
Thu, 20 Jun 2019 18:28:21 +0000 (18:28 +0000)
clang-hexagon-elf bot was failing with:

'No available targets are compatible with triple "x86_64-unknown-linux-gnu"'

Adding a "// REQUIRES: x86-registered-target" to these tests to quiet the bot.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@363963 91177308-0d34-0410-b5e6-96231b3b80d8

12 files changed:
test/InterfaceStubs/bad-format.cpp
test/InterfaceStubs/class-template-specialization.cpp
test/InterfaceStubs/externstatic.c
test/InterfaceStubs/function-template-specialization.cpp
test/InterfaceStubs/hidden-class-inheritance.cpp
test/InterfaceStubs/inline.c
test/InterfaceStubs/inline.h
test/InterfaceStubs/object.cpp
test/InterfaceStubs/template-namespace-function.cpp
test/InterfaceStubs/virtual.cpp
test/InterfaceStubs/visibility.cpp
test/InterfaceStubs/weak.cpp

index d40b1f965b07adfd084554f336dab3ecf7f2a714..463f39aadc813c66ac6e84d11077569525772850 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: not %clang -target x86_64-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=bar-format %s 2>&1 | FileCheck %s
 
index d1f1d067ccd604c4f03143610d07239bd86dbd3f..53baa3490f76b00fda8462b698f12c6e168b4685 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 %s | \
 // RUN: FileCheck -check-prefix=CHECK-TAPI %s
index 9224581ee06c241e7c4c8c8e361df292ad399ab2..832b4b3aaf8acac621c0100815a36cb9a20feda5 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -DSTORAGE="extern" -target x86_64-unknown-linux-gnu -o - \
 // RUN: -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-yaml-elf-v1 -std=c99 -xc %s | \
index b6cf64c60275fe00c21296b61476d662d86871df..f01b4311da1fe3b44e0aec92e43b4b90930527b0 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 %s | FileCheck %s
 
index de4c2993c722368799eb91beda9129116c24f2f0..9152914dbd85edd9bfb21eac73b80e34c9c6f43a 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 \
 // RUN: -DPARENT_CLASS_VISIBILITY="" -DCHILD_CLASS_VISIBILITY="" \
index c64771185f385c3dd32f07ecec520fef16715162..40dc455b131acccce25cc7d09986c7750822bc7e 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -DINLINE=inline -target x86_64-unknown-linux-gnu -o - \
 // RUN: -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-yaml-elf-v1 -std=gnu89 -xc %s | \
index fe16519e94b2a4c5e99b3ce3ada8ce0e82dbcc43..d8b1b0a617d567e5c2c73de3cb3bd8a7731f6d13 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 INLINE int bar() {
   static int var = 42;
   return var;
index 68b5ee781c904f98482b951b733f9f3c17049edb..090a29d1c94a9722de790e091c6db3733d9d09cf 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 %s | \
 // RUN: FileCheck -check-prefix=CHECK-TAPI %s
index 879318122b055433638fdab5e5fa76fa033344ec..41e5fdefe270c2fa41647275021e8619a572c00d 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 %s | \
 // RUN: FileCheck %s
index b861b7e802a2d65b386af0cf3db3315d7c4dbfc4..0fdb604921e8a53cd9e3f08c0412fb0c5e105e6e 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 %s | \
 // RUN: FileCheck -check-prefix=CHECK-TAPI %s
index 87ea7ea7bd56f923ce9186673d79f917e6903032..137c593ff628835fd04509d72715608920c9b4f1 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-unknown-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 -fvisibility=hidden \
 // RUN: %s | FileCheck --check-prefix=CHECK-CMD-HIDDEN %s
index e089225b5d6af2094cbb6547d5665ae60aa81fea..50bae580f018351e58c1f1fc9531e96561a3e1b1 100644 (file)
@@ -1,3 +1,4 @@
+// REQUIRES: x86-registered-target
 // RUN: %clang -target x86_64-linux-gnu -o - -emit-interface-stubs \
 // RUN: -interface-stub-version=experimental-tapi-elf-v1 %s | \
 // RUN: FileCheck %s