[clang-tools-extra] r254477 - Force test to a target that supports thread_local

Matthias Braun via cfe-commits cfe-commits at lists.llvm.org
Tue Dec 1 17:12:07 PST 2015


Author: matze
Date: Tue Dec  1 19:12:06 2015
New Revision: 254477

URL: http://llvm.org/viewvc/llvm-project?rev=254477&view=rev
Log:
Force test to a target that supports thread_local

This should fix darwin bots.

Modified:
    clang-tools-extra/trunk/test/clang-tidy/cert-static-object-exception.cpp

Modified: clang-tools-extra/trunk/test/clang-tidy/cert-static-object-exception.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/cert-static-object-exception.cpp?rev=254477&r1=254476&r2=254477&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/cert-static-object-exception.cpp (original)
+++ clang-tools-extra/trunk/test/clang-tidy/cert-static-object-exception.cpp Tue Dec  1 19:12:06 2015
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s cert-err58-cpp %t
+// RUN: %check_clang_tidy %s cert-err58-cpp %t -- -- -std=c++11 -target x86_64-pc-linux-gnu
 
 struct S {
   S() noexcept(false);




More information about the cfe-commits mailing list