diff --git a/SYCL/Scheduler/HostAccDestruction.cpp b/SYCL/Scheduler/HostAccDestruction.cpp index 992784d86f..f8526ebae6 100644 --- a/SYCL/Scheduler/HostAccDestruction.cpp +++ b/SYCL/Scheduler/HostAccDestruction.cpp @@ -2,7 +2,6 @@ // RUN: env SYCL_PI_TRACE=2 %CPU_RUN_PLACEHOLDER %t.out 2>&1 %CPU_CHECK_PLACEHOLDER // RUN: env SYCL_PI_TRACE=2 %GPU_RUN_PLACEHOLDER %t.out 2>&1 %CPU_CHECK_PLACEHOLDER // RUN: env SYCL_PI_TRACE=2 %ACC_RUN_PLACEHOLDER %t.out 2>&1 %CPU_CHECK_PLACEHOLDER -// XFAIL: opencl && windows //==---------------------- HostAccDestruction.cpp --------------------------==// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. diff --git a/SYCL/lit.cfg.py b/SYCL/lit.cfg.py index 8ed1be8d16..8d3c66e652 100644 --- a/SYCL/lit.cfg.py +++ b/SYCL/lit.cfg.py @@ -102,7 +102,6 @@ # ESIMD-specific setup. Requires OpenCL for now. if "opencl" in config.available_features: - print(config.available_features) esimd_run_substitute = " env SYCL_BE=PI_OPENCL SYCL_DEVICE_TYPE=GPU SYCL_PROGRAM_COMPILE_OPTIONS=-vc-codegen" config.substitutions.append( ('%ESIMD_RUN_PLACEHOLDER', esimd_run_substitute) ) config.substitutions.append( ('%clangxx-esimd', config.dpcpp_compiler + @@ -197,11 +196,7 @@ acc_run_substitute = "true" acc_check_substitute = "" -# Tests executed with FPGA emu on Windows are not stable -# Disabled until FPGA emulator is fixed -if platform.system() == "Windows": - lit_config.warning("Accelerator device is disabled on Windows because of instability") -elif 'acc' in config.target_devices.split(','): +if 'acc' in config.target_devices.split(','): found_at_least_one_device = True lit_config.note("Tests accelerator device") acc_run_substitute = " env SYCL_DEVICE_TYPE=ACC "