diff options
| author | Alexey Samsonov <vonosmas@gmail.com> | 2015-03-02 19:34:02 +0000 |
|---|---|---|
| committer | Alexey Samsonov <vonosmas@gmail.com> | 2015-03-02 19:34:02 +0000 |
| commit | 1ce8745b77a198f31573a30e03b50fced27413b5 (patch) | |
| tree | 7e1339afce725a503506a48f86a117b32212b9f2 | |
| parent | dd323acef57e54ed3b5d2d7accd3811331769e4f (diff) | |
| download | bcm5719-llvm-1ce8745b77a198f31573a30e03b50fced27413b5.tar.gz bcm5719-llvm-1ce8745b77a198f31573a30e03b50fced27413b5.zip | |
[Sanitizer] Restrict open_memstream to x86_64. Fixes PR22714.
llvm-svn: 230996
| -rw-r--r-- | compiler-rt/test/sanitizer_common/TestCases/Linux/open_memstream.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/open_memstream.cc b/compiler-rt/test/sanitizer_common/TestCases/Linux/open_memstream.cc index 6abe0bfb148..69097c094a9 100644 --- a/compiler-rt/test/sanitizer_common/TestCases/Linux/open_memstream.cc +++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/open_memstream.cc @@ -1,5 +1,6 @@ // RUN: %clangxx -m64 -O0 -g -xc++ %s -o %t && %run %t // RUN: %clangxx -m64 -O3 -g -xc++ %s -o %t && %run %t +// REQUIRES: x86_64-supported-target #include <assert.h> #include <stdio.h> |

