[compiler-rt] r320224 - Disable test/msan/pvalloc.cc on NetBSD
Kamil Rytarowski via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 8 16:37:21 PST 2017
Author: kamil
Date: Fri Dec 8 16:37:20 2017
New Revision: 320224
URL: http://llvm.org/viewvc/llvm-project?rev=320224&view=rev
Log:
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
Modified:
compiler-rt/trunk/test/msan/pvalloc.cc
Modified: compiler-rt/trunk/test/msan/pvalloc.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/msan/pvalloc.cc?rev=320224&r1=320223&r2=320224&view=diff
==============================================================================
--- compiler-rt/trunk/test/msan/pvalloc.cc (original)
+++ compiler-rt/trunk/test/msan/pvalloc.cc Fri Dec 8 16:37:20 2017
@@ -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.
More information about the llvm-commits
mailing list