From b73313de208941b3465fbc65083e04124432126e Mon Sep 17 00:00:00 2001 From: Artem Belevich Date: Tue, 14 Jul 2015 18:49:17 +0000 Subject: [PATCH] Run cuda options test only with specific target. For now it's only x86_64-linux-gnu. llvm-svn: 242181 --- clang/test/Driver/cuda-options.cu | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/clang/test/Driver/cuda-options.cu b/clang/test/Driver/cuda-options.cu index 1c3ea51..90bdea4 100644 --- a/clang/test/Driver/cuda-options.cu +++ b/clang/test/Driver/cuda-options.cu @@ -1,8 +1,10 @@ // Tests CUDA compilation pipeline construction in Driver. // REQUIRES: clang-driver +// REQUIRES: x86-registered-target +// REQUIRES: nvptx-registered-target // Simple compilation case: -// RUN: %clang -### -c %s 2>&1 \ +// RUN: %clang -### -target=x86_64-linux-gnu -c %s 2>&1 \ // Compile device-side to PTX assembly and make sure we use it on the host side. // RUN: | FileCheck -check-prefix CUDA-D1 \ // Then compile host side and incorporate device code. @@ -11,7 +13,7 @@ // RUN: -check-prefix CUDA-NL %s // Typical compilation + link case: -// RUN: %clang -### %s 2>&1 \ +// RUN: %clang -### -target=x86_64-linux-gnu %s 2>&1 \ // Compile device-side to PTX assembly and make sure we use it on the host side // RUN: | FileCheck -check-prefix CUDA-D1 \ // Then compile host side and incorporate device code. @@ -20,7 +22,7 @@ // RUN: -check-prefix CUDA-L %s // Verify that -cuda-no-device disables device-side compilation and linking -// RUN: %clang -### --cuda-host-only %s 2>&1 \ +// RUN: %clang -### -target=x86_64-linux-gnu --cuda-host-only %s 2>&1 \ // Make sure we didn't run device-side compilation. // RUN: | FileCheck -check-prefix CUDA-ND \ // Then compile host side and make sure we don't attempt to incorporate GPU code. @@ -29,7 +31,7 @@ // RUN: -check-prefix CUDA-NL %s // Verify that -cuda-no-host disables host-side compilation and linking -// RUN: %clang -### --cuda-device-only %s 2>&1 \ +// RUN: %clang -### -target=x86_64-linux-gnu --cuda-device-only %s 2>&1 \ // Compile device-side to PTX assembly // RUN: | FileCheck -check-prefix CUDA-D1 \ // Make sure there are no host cmpilation or linking. @@ -37,7 +39,7 @@ // Verify that with -S we compile host and device sides to assembly // and incorporate device code on the host side. -// RUN: %clang -### -S -c %s 2>&1 \ +// RUN: %clang -### -target=x86_64-linux-gnu -S -c %s 2>&1 \ // Compile device-side to PTX assembly // RUN: | FileCheck -check-prefix CUDA-D1 \ // Then compile host side and incorporate GPU code. @@ -47,7 +49,7 @@ // Verify that --cuda-gpu-arch option passes correct GPU // archtecture info to device compilation. -// RUN: %clang -### --cuda-gpu-arch=sm_35 -c %s 2>&1 \ +// RUN: %clang -### -target=x86_64-linux-gnu --cuda-gpu-arch=sm_35 -c %s 2>&1 \ // Compile device-side to PTX assembly. // RUN: | FileCheck -check-prefix CUDA-D1 -check-prefix CUDA-D1-SM35 \ // Then compile host side and incorporate GPU code. @@ -57,7 +59,7 @@ // Verify that there is device-side compilation per --cuda-gpu-arch args // and that all results are included on the host side. -// RUN: %clang -### --cuda-gpu-arch=sm_35 --cuda-gpu-arch=sm_30 -c %s 2>&1 \ +// RUN: %clang -### -target=x86_64-linux-gnu --cuda-gpu-arch=sm_35 --cuda-gpu-arch=sm_30 -c %s 2>&1 \ // Compile both device-sides to PTX assembly // RUN: | FileCheck \ // RUN: -check-prefix CUDA-D1 -check-prefix CUDA-D1-SM35 \ -- 2.7.4