summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Rytarowski <n54@gmx.com>2017-12-09 00:37:20 +0000
committerKamil Rytarowski <n54@gmx.com>2017-12-09 00:37:20 +0000
commitdf391ce3fda1aa4300c794e53117f2fa16a7439c (patch)
treeb61c2a25f76b9553309e54bf365ce10910c3b52d
parentc55ee2b295b2ee19a31b10e2be0d9c8d077b9e3a (diff)
Disable test/msan/pvalloc.cc on NetBSD
Summary: The pvalloc(3) function is a non-standard extension missing on NetBSD. Sponsored by <The NetBSD Foundation> Reviewers: joerg, eugenis, vitalybuka Reviewed By: vitalybuka Subscribers: llvm-commits, #sanitizers Tags: #sanitizers Differential Revision: https://reviews.llvm.org/D41014 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@320224 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/msan/pvalloc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/msan/pvalloc.cc b/test/msan/pvalloc.cc
index 21b2300b5..7c406df79 100644
--- a/test/msan/pvalloc.cc
+++ b/test/msan/pvalloc.cc
@@ -4,7 +4,7 @@
// RUN: MSAN_OPTIONS=allocator_may_return_null=0 not %run %t psm1 2>&1 | FileCheck %s
// RUN: MSAN_OPTIONS=allocator_may_return_null=1 %run %t psm1 2>&1
-// UNSUPPORTED: win32, freebsd
+// UNSUPPORTED: win32, freebsd, netbsd
// Checks that pvalloc overflows are caught. If the allocator is allowed to
// return null, the errno should be set to ENOMEM.