[compiler-rt] r338296 - [compiler-rt] integer-truncation-blacklist.c: XFAIL on android/ios
Roman Lebedev via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 30 13:05:24 PDT 2018
Author: lebedevri
Date: Mon Jul 30 13:05:24 2018
New Revision: 338296
URL: http://llvm.org/viewvc/llvm-project?rev=338296&view=rev
Log:
[compiler-rt] integer-truncation-blacklist.c: XFAIL on android/ios
The Builder sanitizer-x86_64-linux-android is failing
starting with rL338287 / D48959.
It runs the tests via android_compile.py, so i'm not sure this
is actually *this* issue:
https://code.google.com/p/address-sanitizer/issues/detail?id=316
but this seems oddly similar to the other XFAIL'ed cases...
Right now that seems to be the only failing builder,
so i *think* it makes sense to try to just blacklist it for now.
Modified:
compiler-rt/trunk/test/ubsan/TestCases/ImplicitCast/integer-truncation-blacklist.c
Modified: compiler-rt/trunk/test/ubsan/TestCases/ImplicitCast/integer-truncation-blacklist.c
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/ubsan/TestCases/ImplicitCast/integer-truncation-blacklist.c?rev=338296&r1=338295&r2=338296&view=diff
==============================================================================
--- compiler-rt/trunk/test/ubsan/TestCases/ImplicitCast/integer-truncation-blacklist.c (original)
+++ compiler-rt/trunk/test/ubsan/TestCases/ImplicitCast/integer-truncation-blacklist.c Mon Jul 30 13:05:24 2018
@@ -1,3 +1,8 @@
+// FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=316
+// I'm not sure this is actually *that* issue, but this seems oddly similar to the other XFAIL'ed cases.
+// XFAIL: android
+// UNSUPPORTED: ios
+
// RUN: rm -f %tmp
// RUN: echo "[implicit-integer-truncation]" >> %tmp
// RUN: echo "fun:*implicitTruncation*" >> %tmp
More information about the llvm-commits
mailing list