[compiler-rt] r224822 - [sanitizer] Disable InternalMmapWithOffset test on OSX.
Evgeniy Stepanov
eugeni.stepanov at gmail.com
Wed Dec 24 05:59:35 PST 2014
Author: eugenis
Date: Wed Dec 24 07:59:35 2014
New Revision: 224822
URL: http://llvm.org/viewvc/llvm-project?rev=224822&view=rev
Log:
[sanitizer] Disable InternalMmapWithOffset test on OSX.
Modified:
compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_libc_test.cc
Modified: compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_libc_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_libc_test.cc?rev=224822&r1=224821&r2=224822&view=diff
==============================================================================
--- compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_libc_test.cc (original)
+++ compiler-rt/trunk/lib/sanitizer_common/tests/sanitizer_libc_test.cc Wed Dec 24 07:59:35 2014
@@ -129,7 +129,7 @@ TEST(SanitizerCommon, InternalStrFunctio
}
// FIXME: File manipulations are not yet supported on Windows
-#if !defined(_WIN32)
+#if !defined(_WIN32) && !SANITIZER_MAC
TEST(SanitizerCommon, InternalMmapWithOffset) {
char tmpfile[128];
temp_file_name(tmpfile, sizeof(tmpfile),
More information about the llvm-commits
mailing list