Skip to content
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

Added negative tests for clCommandCopy[Buffer, BufferRect, BufferToImage]KHR #1941

Merged
Show file tree
Hide file tree
Changes from 5 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
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ set(${MODULE_NAME}_SOURCES
command_buffer_test_event_info.cpp
command_buffer_finalize.cpp
negative_command_buffer_create.cpp
negative_command_buffer_copy.cpp
bashbaug marked this conversation as resolved.
Show resolved Hide resolved
negative_command_buffer_get_info.cpp
)

Expand Down
6 changes: 6 additions & 0 deletions test_conformance/extensions/cl_khr_command_buffer/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,12 @@ test_definition test_list[] = {
ADD_TEST(negative_create_command_buffer_queue_without_min_properties),
ADD_TEST(
negative_create_command_buffer_device_does_not_support_out_of_order_queue),
ADD_TEST(negative_command_buffer_copy_queue_not_null),
ADD_TEST(negative_command_buffer_copy_different_contexts),
ADD_TEST(negative_command_buffer_copy_sync_points_null_or_num_zero),
ADD_TEST(negative_command_buffer_copy_invalid_command_buffer),
ADD_TEST(negative_command_buffer_copy_finalized_command_buffer),
ADD_TEST(negative_command_buffer_copy_mutable_handle_not_null),
ADD_TEST(negative_get_command_buffer_info_invalid_command_buffer),
ADD_TEST(negative_get_command_buffer_info_not_supported_param_name),
ADD_TEST(negative_get_command_buffer_info_queues),
Expand Down
Loading
Loading