From 25665b1d60d419856f23845f68ed0bc4883d92d8 Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Tue, 26 Sep 2017 03:45:37 +0000 Subject: [PATCH] [XRay] Stop running tests for 'amd64', and remove -fPIE from tests. Follow-up to D38226. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@314189 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Driver/XRay/lit.local.cfg | 4 ++-- test/Driver/XRay/xray-shared-noxray.cpp | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/test/Driver/XRay/lit.local.cfg b/test/Driver/XRay/lit.local.cfg index 56420cfecc..85e1ee733f 100644 --- a/test/Driver/XRay/lit.local.cfg +++ b/test/Driver/XRay/lit.local.cfg @@ -3,8 +3,8 @@ config.available_features.update(target_triple_components) # Only run the tests in platforms where XRay instrumentation is supported. supported_targets = [ - 'amd64', 'x86_64', 'x86_64h', 'arm', 'aarch64', 'arm64', 'powerpc64le', - 'mips', 'mipsel', 'mips64', 'mips64el' + 'x86_64', 'x86_64h', 'arm', 'aarch64', 'arm64', 'powerpc64le', 'mips', + 'mipsel', 'mips64', 'mips64el' ] # Only on platforms we support. diff --git a/test/Driver/XRay/xray-shared-noxray.cpp b/test/Driver/XRay/xray-shared-noxray.cpp index 564df88c4e..dc6f8a125a 100644 --- a/test/Driver/XRay/xray-shared-noxray.cpp +++ b/test/Driver/XRay/xray-shared-noxray.cpp @@ -2,8 +2,6 @@ // RUN: FileCheck %s --check-prefix=SHARED // RUN: %clangxx -static -o /dev/null -v -fxray-instrument %s 2>&1 -DMAIN | \ // RUN: FileCheck %s --check-prefix=STATIC -// RUN: %clangxx -static -fPIE -o /dev/null -v -fxray-instrument %s 2>&1 \ -// RUN: -DMAIN | FileCheck %s --check-prefix=STATIC // // SHARED-NOT: {{clang_rt\.xray-}} // STATIC: {{clang_rt\.xray-}} -- 2.40.0