[sanitizer] Disable InternalMmapWithOffset test on Windows.

llvm-svn: 224820
This commit is contained in:
Evgeniy Stepanov 2014-12-24 13:05:21 +00:00
parent 98211121ab
commit 40b16f4037
1 changed files with 3 additions and 0 deletions

View File

@ -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