diff options
| author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-12-24 13:05:21 +0000 |
|---|---|---|
| committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2014-12-24 13:05:21 +0000 |
| commit | 40b16f4037c178d2f6d06d6bc0d0a9ec2af313c8 (patch) | |
| tree | f591b0e3b6b3b384a3d049c5eeabca6b171ac12e /compiler-rt/lib | |
| parent | 98211121abd4d68730372c873e5bbb41e2104fdb (diff) | |
| download | bcm5719-llvm-40b16f4037c178d2f6d06d6bc0d0a9ec2af313c8.tar.gz bcm5719-llvm-40b16f4037c178d2f6d06d6bc0d0a9ec2af313c8.zip | |
[sanitizer] Disable InternalMmapWithOffset test on Windows.
llvm-svn: 224820
Diffstat (limited to 'compiler-rt/lib')
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc b/compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc index a9e7fca7695..5750c9b9731 100644 --- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc +++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_libc_test.cc @@ -128,6 +128,8 @@ TEST(SanitizerCommon, InternalStrFunctions) { EXPECT_EQ(haystack + 8, internal_strchrnul(haystack, 'z')); } +// FIXME: File manipulations are not yet supported on Windows +#if !defined(_WIN32) TEST(SanitizerCommon, InternalMmapWithOffset) { char tmpfile[128]; temp_file_name(tmpfile, sizeof(tmpfile), @@ -153,3 +155,4 @@ TEST(SanitizerCommon, InternalMmapWithOffset) { internal_munmap(p, page_size); internal_unlink(tmpfile); } +#endif |

