From: Simon Dardis Date: Fri, 12 May 2017 19:55:32 +0000 (+0000) Subject: [Sema] Silence buildbot failures introduced by r302935 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d3b0295de7324f79875f59a95f5a93952d0e6ce;p=clang [Sema] Silence buildbot failures introduced by r302935 Attempt to silence buildbot failures by pinning the test to a given triple rather than the host's triple. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@302941 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Sema/vector-gcc-compat.c b/test/Sema/vector-gcc-compat.c index b61f8ed20e..9eb0569b25 100644 --- a/test/Sema/vector-gcc-compat.c +++ b/test/Sema/vector-gcc-compat.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything +// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything -triple x86_64-apple-darwin10 // Test the compatibility of clang's vector extensions with gcc's vector // extensions for C. Notably &&, ||, ?: and ! are not available. diff --git a/test/Sema/vector-gcc-compat.cpp b/test/Sema/vector-gcc-compat.cpp index 9e9bd4d905..12da314c32 100644 --- a/test/Sema/vector-gcc-compat.cpp +++ b/test/Sema/vector-gcc-compat.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything -std=c++11 +// RUN: %clang_cc1 %s -verify -fsyntax-only -Weverything -std=c++11 -triple x86_64-apple-darwin10 // Test the compatibility of clang++'s vector extensions with g++'s vector // extensions. In comparison to the extensions available in C, the !, ?:, && and