diff options
author | Matthias Braun <matze@braunis.de> | 2015-12-02 01:12:06 +0000 |
---|---|---|
committer | Matthias Braun <matze@braunis.de> | 2015-12-02 01:12:06 +0000 |
commit | 75fe1f02387177359fbf9f5668ff36457eea045d (patch) | |
tree | c12cc26a3d08685a1d862f10edd18d920b33043e | |
parent | 5dfc4a4d0271e9b919702b7a638bb4ee624ec940 (diff) | |
download | bcm5719-llvm-75fe1f02387177359fbf9f5668ff36457eea045d.tar.gz bcm5719-llvm-75fe1f02387177359fbf9f5668ff36457eea045d.zip |
Force test to a target that supports thread_local
This should fix darwin bots.
llvm-svn: 254477
-rw-r--r-- | clang-tools-extra/test/clang-tidy/cert-static-object-exception.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/cert-static-object-exception.cpp b/clang-tools-extra/test/clang-tidy/cert-static-object-exception.cpp index 4e4c622c7ca..ae2d967f438 100644 --- a/clang-tools-extra/test/clang-tidy/cert-static-object-exception.cpp +++ b/clang-tools-extra/test/clang-tidy/cert-static-object-exception.cpp @@ -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); |