Skip to content

Commit 5b3c5d5

Browse files
author
Diptorup Deb
committed
Do not skip test on Windows.
1 parent b5a1a50 commit 5b3c5d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dpctl/tests/test_sycl_program.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ class TestProgramForLevel0GPU(unittest.TestCase):
8989

9090
# Level zero program creation from a SPIR-V binary is not supported
9191
# on Windows.
92-
@unittest.skipIf(
93-
sys.platform in ["win32", "cygwin"],
94-
"Level Zero module creation unsupported on Windows.",
95-
)
92+
# @unittest.skipIf(
93+
# sys.platform in ["win32", "cygwin"],
94+
# "Level Zero module creation unsupported on Windows.",
95+
# )
9696
def test_create_program_from_spirv(self):
9797
CURR_DIR = os.path.dirname(os.path.abspath(__file__))
9898
spirv_file = os.path.join(CURR_DIR, "input_files/multi_kernel.spv")

0 commit comments

Comments
 (0)