Skip to content

Commit

Permalink
Merge pull request #2632 from aarongreig/aaron/fixBadTestMacros
Browse files Browse the repository at this point in the history
Fix TEST_F -> TEST_P in platform + device native handle CTS tests.
  • Loading branch information
kbenzie authored Jan 29, 2025
2 parents 5d7be10 + 2f1b9f7 commit 4643d1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/conformance/device/urDeviceCreateWithNativeHandle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ TEST_P(urDeviceCreateWithNativeHandleTest, Success) {
&dev_id, nullptr));
}

TEST_F(urDeviceCreateWithNativeHandleTest,
TEST_P(urDeviceCreateWithNativeHandleTest,
SuccessWithExplicitUnOwnedNativeHandle) {
ur_native_handle_t native_handle = 0;
UUR_ASSERT_SUCCESS_OR_UNSUPPORTED(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ TEST_P(urPlatformCreateWithNativeHandleTest, Success) {
ASSERT_EQ(input_platform_name, created_platform_name);
}

TEST_F(urPlatformCreateWithNativeHandleTest,
TEST_P(urPlatformCreateWithNativeHandleTest,
SuccessWithExplicitUnOwnedNativeHandle) {
ur_native_handle_t native_handle = 0;

Expand Down

0 comments on commit 4643d1c

Please sign in to comment.