[compiler-rt] r345600 - Disable ASan test asan_and_llvm_coverage_test for NetBSD
Kamil Rytarowski via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 30 06:58:45 PDT 2018
Author: kamil
Date: Tue Oct 30 06:58:45 2018
New Revision: 345600
URL: http://llvm.org/viewvc/llvm-project?rev=345600&view=rev
Log:
Disable ASan test asan_and_llvm_coverage_test for NetBSD
Right now the LLVM profile feature is turned off for this OS.
Modified:
compiler-rt/trunk/test/asan/TestCases/asan_and_llvm_coverage_test.cc
Modified: compiler-rt/trunk/test/asan/TestCases/asan_and_llvm_coverage_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/asan_and_llvm_coverage_test.cc?rev=345600&r1=345599&r2=345600&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/asan_and_llvm_coverage_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/asan_and_llvm_coverage_test.cc Tue Oct 30 06:58:45 2018
@@ -3,6 +3,9 @@
// We don't really support running tests using profile runtime on Windows.
// UNSUPPORTED: windows-msvc
+
+// profile is disabled by default
+// UNSUPPORTED: netbsd
#include <stdio.h>
int foo() { return 1; }
int XXX = foo();
More information about the llvm-commits
mailing list