Skip to content

Commit 2e653c2

Browse files
authored
Merge pull request #2632 from aarongreig/aaron/fixBadTestMacros
Fix TEST_F -> TEST_P in platform + device native handle CTS tests.
2 parents ec08438 + 2a5b2bb commit 2e653c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/conformance/device/urDeviceCreateWithNativeHandle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ TEST_P(urDeviceCreateWithNativeHandleTest, Success) {
2929
&dev_id, nullptr));
3030
}
3131

32-
TEST_F(urDeviceCreateWithNativeHandleTest,
32+
TEST_P(urDeviceCreateWithNativeHandleTest,
3333
SuccessWithExplicitUnOwnedNativeHandle) {
3434
ur_native_handle_t native_handle = 0;
3535
UUR_ASSERT_SUCCESS_OR_UNSUPPORTED(

test/conformance/platform/urPlatformCreateWithNativeHandle.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ TEST_P(urPlatformCreateWithNativeHandleTest, Success) {
3737
ASSERT_EQ(input_platform_name, created_platform_name);
3838
}
3939

40-
TEST_F(urPlatformCreateWithNativeHandleTest,
40+
TEST_P(urPlatformCreateWithNativeHandleTest,
4141
SuccessWithExplicitUnOwnedNativeHandle) {
4242
ur_native_handle_t native_handle = 0;
4343

0 commit comments

Comments
 (0)