[compiler-rt] 1fe0705 - [sanitizer] Disable test on incompatible platforms
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Sat Jul 18 02:23:01 PDT 2020
Author: Vitaly Buka
Date: 2020-07-18T02:18:50-07:00
New Revision: 1fe0705cb17ab48aab0e486db1148e00e544c0d3
URL: https://github.com/llvm/llvm-project/commit/1fe0705cb17ab48aab0e486db1148e00e544c0d3
DIFF: https://github.com/llvm/llvm-project/commit/1fe0705cb17ab48aab0e486db1148e00e544c0d3.diff
LOG: [sanitizer] Disable test on incompatible platforms
Added:
Modified:
compiler-rt/test/sanitizer_common/TestCases/Linux/signal_send.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/sanitizer_common/TestCases/Linux/signal_send.cpp b/compiler-rt/test/sanitizer_common/TestCases/Linux/signal_send.cpp
index 54014da8b532..84084b9291a7 100644
--- a/compiler-rt/test/sanitizer_common/TestCases/Linux/signal_send.cpp
+++ b/compiler-rt/test/sanitizer_common/TestCases/Linux/signal_send.cpp
@@ -1,5 +1,8 @@
// RUN: %clangxx -std=c++11 -O0 -g %s -o %t && %run %t 2>&1 | FileCheck %s
+// sigandset is glibc specific.
+// UNSUPPORTED: android, freebsd, netbsd
+
#include <assert.h>
#include <signal.h>
#include <stdio.h>
More information about the llvm-commits
mailing list