summaryrefslogtreecommitdiff
path: root/test/xray/lit.cfg
diff options
context:
space:
mode:
authorRenato Golin <renato.golin@linaro.org>2017-01-18 09:07:35 +0000
committerRenato Golin <renato.golin@linaro.org>2017-01-18 09:07:35 +0000
commit1a0f6f34b0e78ed6112fa1d511396a58f7080c49 (patch)
tree34c5c8c09e5fc1e32aa6565e59bf2f6d8164b1f9 /test/xray/lit.cfg
parenta84a3472fdbc0774a17ac4a4839581c2d14df0a0 (diff)
Revert "[XRay][Arm] Enable back XRay testing on Arm32 and fix the failing tests"
This reverts commit r292211, as it broke the Thumb buldbot with: clang-5.0: error: the clang compiler does not support '-fxray-instrument on thumbv7-unknown-linux-gnueabihf' git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@292356 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/xray/lit.cfg')
-rw-r--r--test/xray/lit.cfg4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/xray/lit.cfg b/test/xray/lit.cfg
index 571fe91c9..5d030e101 100644
--- a/test/xray/lit.cfg
+++ b/test/xray/lit.cfg
@@ -30,9 +30,7 @@ config.substitutions.append(
# Default test suffixes.
config.suffixes = ['.c', '.cc', '.cpp']
-if config.host_os not in ['Linux']:
- config.unsupported = True
-elif config.host_arch.find('64') == -1 and config.host_arch.find('arm') == -1:
+if config.host_os not in ['Linux'] or config.host_arch.find('64') == -1:
config.unsupported = True
# Allow tests to use REQUIRES=stable-runtime. For use when you cannot use XFAIL