diff options
author | Kuba Brecka <kuba.brecka@gmail.com> | 2015-11-06 15:20:30 +0000 |
---|---|---|
committer | Kuba Brecka <kuba.brecka@gmail.com> | 2015-11-06 15:20:30 +0000 |
commit | cc47f200ba4d8e40caf582661eb1abc29aa9796f (patch) | |
tree | e3bca91f40ea0fbf6421965237224b4b69305270 | |
parent | 85e01c0bdca413339ec575049e0580a80fb5f85d (diff) | |
download | bcm5719-llvm-cc47f200ba4d8e40caf582661eb1abc29aa9796f.tar.gz bcm5719-llvm-cc47f200ba4d8e40caf582661eb1abc29aa9796f.zip |
Followup test failure fix for r252310 ("[tsan] Add Clang frontend support for TSan on OS X").
llvm-svn: 252311
-rw-r--r-- | clang/test/Driver/fsanitize.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/Driver/fsanitize.c b/clang/test/Driver/fsanitize.c index 499485d4b20..6e470b24701 100644 --- a/clang/test/Driver/fsanitize.c +++ b/clang/test/Driver/fsanitize.c @@ -207,12 +207,11 @@ // CHECK-MSAN-NOMSAN-DARWIN-NOT: unsupported option // RUN: %clang -target x86_64-apple-darwin10 -fsanitize=memory -fsanitize=thread,memory %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-MSAN-TSAN-MSAN-DARWIN -// CHECK-MSAN-TSAN-MSAN-DARWIN: unsupported option '-fsanitize=thread,memory' for target 'x86_64-apple-darwin10' +// CHECK-MSAN-TSAN-MSAN-DARWIN: unsupported option '-fsanitize=memory' for target 'x86_64-apple-darwin10' // CHECK-MSAN-TSAN-MSAN-DARWIN-NOT: unsupported option // RUN: %clang -target x86_64-apple-darwin10 -fsanitize=thread,memory -fsanitize=memory %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-TSAN-MSAN-MSAN-DARWIN // CHECK-TSAN-MSAN-MSAN-DARWIN: unsupported option '-fsanitize=memory' for target 'x86_64-apple-darwin10' -// CHECK-TSAN-MSAN-MSAN-DARWIN: unsupported option '-fsanitize=thread' for target 'x86_64-apple-darwin10' // CHECK-TSAN-MSAN-MSAN-DARWIN-NOT: unsupported option // RUN: %clang -target x86_64-apple-darwin10 -fsanitize=function %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-FSAN-DARWIN |