[compiler-rt] r313283 - [asan] Disable two dynamic tests on armhf

Vitaly Buka via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 14 11:19:29 PDT 2017


Author: vitalybuka
Date: Thu Sep 14 11:19:28 2017
New Revision: 313283

URL: http://llvm.org/viewvc/llvm-project?rev=313283&view=rev
Log:
[asan] Disable two dynamic tests on armhf

This is not an regression. Tests are old and we just recently started to
run them on bots with dynamic runtime.

Modified:
    compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc
    compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc

Modified: compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc?rev=313283&r1=313282&r2=313283&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/Posix/stack-use-after-return.cc Thu Sep 14 11:19:28 2017
@@ -17,6 +17,9 @@
 // This test runs out of stack on AArch64.
 // UNSUPPORTED: aarch64
 
+// FIXME: Fix this test for dynamic runtime on armhf-linux.
+// UNSUPPORTED: armhf-linux && asan-dynamic-runtime
+
 #include <limits.h>
 #include <pthread.h>
 #include <stdio.h>

Modified: compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc?rev=313283&r1=313282&r2=313283&view=diff
==============================================================================
--- compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc (original)
+++ compiler-rt/trunk/test/asan/TestCases/heavy_uar_test.cc Thu Sep 14 11:19:28 2017
@@ -5,6 +5,9 @@
 // FIXME: Fix this test under GCC.
 // REQUIRES: Clang
 
+// FIXME: Fix this test for dynamic runtime on armhf-linux.
+// UNSUPPORTED: armhf-linux && asan-dynamic-runtime
+
 #include <stdio.h>
 #include <string.h>
 #include <stdlib.h>




More information about the llvm-commits mailing list