[compiler-rt] r315511 - Disable profile tests on Android.

Evgeniy Stepanov via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 11 14:22:32 PDT 2017


Author: eugenis
Date: Wed Oct 11 14:22:32 2017
New Revision: 315511

URL: http://llvm.org/viewvc/llvm-project?rev=315511&view=rev
Log:
Disable profile tests on Android.

They never actually worked, but this way they are not included in "check-all".

Modified:
    compiler-rt/trunk/test/profile/lit.cfg

Modified: compiler-rt/trunk/test/profile/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/profile/lit.cfg?rev=315511&r1=315510&r2=315511&view=diff
==============================================================================
--- compiler-rt/trunk/test/profile/lit.cfg (original)
+++ compiler-rt/trunk/test/profile/lit.cfg Wed Oct 11 14:22:32 2017
@@ -72,3 +72,6 @@ if config.host_os not in ['Darwin', 'Fre
 
 if config.target_arch in ['armv7l']:
   config.unsupported = True
+
+if config.android:
+  config.unsupported = True




More information about the llvm-commits mailing list