summaryrefslogtreecommitdiff
path: root/test/ubsan
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2017-10-10 23:37:26 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2017-10-10 23:37:26 +0000
commit45675f2e9fdf6b595ebc8eefb085c722358a4a32 (patch)
tree7d6a69e7a3562ef7b390b1ae445f180cb7281fab /test/ubsan
parent69abe65f08f043198d583d11978362bf5c4c992a (diff)
Factor out "stable-runtime" feature and enable it on all android.
This is a very poorly named feature. I think originally it meant to cover linux only, but the use of it in msan seems to be about any aarch64 platform. Anyway, this change should be NFC on everything except Android. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@315389 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ubsan')
-rw-r--r--test/ubsan/lit.common.cfg5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/ubsan/lit.common.cfg b/test/ubsan/lit.common.cfg
index 8c6801e2c..f34d5867d 100644
--- a/test/ubsan/lit.common.cfg
+++ b/test/ubsan/lit.common.cfg
@@ -73,9 +73,4 @@ config.suffixes = ['.c', '.cc', '.cpp']
if config.host_os not in ['Linux', 'Darwin', 'FreeBSD', 'Windows', 'NetBSD']:
config.unsupported = True
-# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL
-# because the test hangs or fails on one configuration and not the other.
-if config.target_arch.startswith('arm') == False and config.target_arch != 'aarch64':
- config.available_features.add('stable-runtime')
-
config.available_features.add('arch=' + config.target_arch)