Skip to content

[SYCL][NFC] Fix kernel release test when only host device is available #1835

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sycl/unittests/program/KernelRelease.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ pi_result redefinedKernelGetInfo(pi_kernel kernel, pi_kernel_info param_name,
}

TEST(KernelReleaseTest, GetKernelRelease) {
unittest::PiMock Mock;
platform Plt = Mock.getPlatform();
platform Plt{default_selector()};
if (Plt.is_host()) {
std::cerr << "The program/kernel methods are mostly no-op on the host "
std::cout << "The program/kernel methods are mostly no-op on the host "
"device, the test is not run."
<< std::endl;
return;
}

unittest::PiMock Mock{Plt};
Mock.redefine<detail::PiApiKind::piclProgramCreateWithSource>(
redefinedProgramCreateWithSource);
Mock.redefine<detail::PiApiKind::piProgramBuild>(redefinedProgramBuild);
Expand Down