diff --git a/tests/codegen/dcompute_cl_addrspaces.d b/tests/codegen/dcompute_cl_addrspaces.d index b2e4f212b1d..af901cab0ba 100644 --- a/tests/codegen/dcompute_cl_addrspaces.d +++ b/tests/codegen/dcompute_cl_addrspaces.d @@ -1,6 +1,7 @@ // See GH issue #2709 // REQUIRES: target_SPIRV +// REQUIRES: dcompute_RTInfo_fix // RUN: %ldc -c -mdcompute-targets=ocl-220 -m64 -mdcompute-file-prefix=addrspace -output-ll -output-o %s && FileCheck %s --check-prefix=LL < addrspace_ocl220_64.ll \ // RUN: && %llvm-spirv -to-text addrspace_ocl220_64.spv && FileCheck %s --check-prefix=SPT < addrspace_ocl220_64.spt @compute(CompileFor.deviceOnly) module dcompute_cl_addrspaces; diff --git a/tests/codegen/dcompute_cu_addrspaces.d b/tests/codegen/dcompute_cu_addrspaces.d index 98941a2ce43..04add28293c 100644 --- a/tests/codegen/dcompute_cu_addrspaces.d +++ b/tests/codegen/dcompute_cu_addrspaces.d @@ -1,4 +1,5 @@ // REQUIRES: target_NVPTX +// REQUIRES: dcompute_RTInfo_fix // RUN: %ldc -c -mdcompute-targets=cuda-350 -m64 -mdcompute-file-prefix=addrspace -output-ll -output-o %s && FileCheck %s --check-prefix=LL < addrspace_cuda350_64.ll && FileCheck %s --check-prefix=PTX < addrspace_cuda350_64.ptx @compute(CompileFor.deviceOnly) module dcompute_cu_addrspaces; import ldc.dcompute; diff --git a/tests/compilable/dcompute.d b/tests/compilable/dcompute.d index d6d450d628c..99f72aab685 100644 --- a/tests/compilable/dcompute.d +++ b/tests/compilable/dcompute.d @@ -5,6 +5,7 @@ // - typeid generated for hashing of struct (typeid(const(T))) is ignored and does not error // REQUIRES: target_NVPTX +// REQUIRES: dcompute_RTInfo_fix // RUN: %ldc -mdcompute-targets=cuda-350 -g %s @compute(CompileFor.deviceOnly) module dcompute;