From be9bd25b27de17f5d6a482a2632fbd5a910f16c8 Mon Sep 17 00:00:00 2001 From: "Sarnie, Nick" Date: Mon, 12 Dec 2022 12:02:05 -0500 Subject: [PATCH] [SYCL] Disable No RDC lit tests on Windows Signed-off-by: Sarnie, Nick --- clang/test/Driver/sycl-no-rdc-fat-archive.cpp | 2 ++ clang/test/Driver/sycl-no-rdc.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/clang/test/Driver/sycl-no-rdc-fat-archive.cpp b/clang/test/Driver/sycl-no-rdc-fat-archive.cpp index 9caac166bccac..a3bea054d0280 100644 --- a/clang/test/Driver/sycl-no-rdc-fat-archive.cpp +++ b/clang/test/Driver/sycl-no-rdc-fat-archive.cpp @@ -1,4 +1,6 @@ /// test behaviors of passing a fat static lib with -fno-sycl-rdc +// UNSUPPORTED: system-windows + // Build a fat static lib that will be used for all tests // RUN: echo "void foo(void) {}" > %t1.cpp // RUN: %clangxx -target x86_64-unknown-linux-gnu -fsycl %t1.cpp -c -o %t1_bundle.o diff --git a/clang/test/Driver/sycl-no-rdc.cpp b/clang/test/Driver/sycl-no-rdc.cpp index 22f8135f987fc..8a622ef62649c 100644 --- a/clang/test/Driver/sycl-no-rdc.cpp +++ b/clang/test/Driver/sycl-no-rdc.cpp @@ -1,4 +1,6 @@ /// Tests for -fno-sycl-rdc +// UNSUPPORTED: system-windows + // RUN: touch %t1.cpp // RUN: touch %t2.cpp // RUN: %clang -### -fsycl -fno-sycl-rdc --sysroot=%S/Inputs/SYCL %t1.cpp %t2.cpp 2>&1 -ccc-print-phases | FileCheck %s