@@ -303,7 +303,7 @@ TEST(KernelAndProgramCache, ProgramBuildNegativeLinkOpts) {
303
303
EXPECT_EQ (Cache.size (), 0 ) << " Expect empty cache for programs" ;
304
304
}
305
305
306
- TEST (KernelAndProgramCache, KernelCachePositive ) {
306
+ TEST (KernelAndProgramCache, KernelPositive ) {
307
307
platform Plt{default_selector ()};
308
308
if (Plt.is_host () || Plt.get_backend () != backend::opencl) {
309
309
std::clog << " This test is only supported on OpenCL devices\n " ;
@@ -332,7 +332,7 @@ TEST(KernelAndProgramCache, KernelCachePositive) {
332
332
EXPECT_EQ (Cache.size (), 1 ) << " Expect non-empty cache for kernels" ;
333
333
}
334
334
335
- TEST (KernelAndProgramCache, KernelCacheNegativeBuildOpts ) {
335
+ TEST (KernelAndProgramCache, KernelNegativeBuildOpts ) {
336
336
platform Plt{default_selector ()};
337
337
if (Plt.is_host () || Plt.get_backend () != backend::opencl) {
338
338
std::clog << " This test is only supported on OpenCL devices\n " ;
@@ -360,7 +360,8 @@ TEST(KernelAndProgramCache, KernelCacheNegativeBuildOpts) {
360
360
CtxImpl->getKernelProgramCache ().acquireKernelsPerProgramCache ().get ();
361
361
EXPECT_EQ (Cache.size (), 0 ) << " Expect empty cache for kernels" ;
362
362
}
363
- TEST (KernelAndProgramCache, KernelCacheNegativeCompileOpts) {
363
+
364
+ TEST (KernelAndProgramCache, KernelNegativeCompileOpts) {
364
365
platform Plt{default_selector ()};
365
366
if (Plt.is_host () || Plt.get_backend () != backend::opencl) {
366
367
std::clog << " This test is only supported on OpenCL devices\n " ;
@@ -390,7 +391,7 @@ TEST(KernelAndProgramCache, KernelCacheNegativeCompileOpts) {
390
391
EXPECT_EQ (Cache.size (), 0 ) << " Expect empty cache for kernels" ;
391
392
}
392
393
393
- TEST (KernelAndProgramCache, KernelCacheNegativeLinkOpts ) {
394
+ TEST (KernelAndProgramCache, KernelNegativeLinkOpts ) {
394
395
platform Plt{default_selector ()};
395
396
if (Plt.is_host () || Plt.get_backend () != backend::opencl) {
396
397
std::clog << " This test is only supported on OpenCL devices\n " ;
@@ -420,7 +421,7 @@ TEST(KernelAndProgramCache, KernelCacheNegativeLinkOpts) {
420
421
EXPECT_EQ (Cache.size (), 0 ) << " Expect empty cache for kernels" ;
421
422
}
422
423
423
- TEST (KernelAndProgramCache, KernelCacheNegativeLinkedProgs ) {
424
+ TEST (KernelAndProgramCache, KernelNegativeLinkedProgs ) {
424
425
platform Plt{default_selector ()};
425
426
if (Plt.is_host () || Plt.get_backend () != backend::opencl) {
426
427
std::clog << " This test is only supported on OpenCL devices\n " ;
@@ -453,7 +454,7 @@ TEST(KernelAndProgramCache, KernelCacheNegativeLinkedProgs) {
453
454
EXPECT_EQ (Cache.size (), 0 ) << " Expect empty cache for kernels" ;
454
455
}
455
456
456
- TEST (KernelAndProgramCache, KernelCacheNegativeSource ) {
457
+ TEST (KernelAndProgramCache, KernelNegativeSource ) {
457
458
platform Plt{default_selector ()};
458
459
if (Plt.is_host () || Plt.get_backend () != backend::opencl) {
459
460
std::clog << " This test is only supported on OpenCL devices\n " ;
0 commit comments