summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utests/compare_image_2d_and_1d_array.cpp2
-rw-r--r--utests/compiler_fill_image_1d_array.cpp1
-rw-r--r--utests/compiler_function_qualifiers.cpp1
-rw-r--r--utests/image_1D_buffer.cpp1
-rw-r--r--utests/load_program_from_gen_bin.cpp4
-rw-r--r--utests/load_program_from_spir.cpp2
-rw-r--r--utests/runtime_compile_link.cpp8
-rw-r--r--utests/utest_helper.cpp1
8 files changed, 20 insertions, 0 deletions
diff --git a/utests/compare_image_2d_and_1d_array.cpp b/utests/compare_image_2d_and_1d_array.cpp
index dfa42739..f2db6800 100644
--- a/utests/compare_image_2d_and_1d_array.cpp
+++ b/utests/compare_image_2d_and_1d_array.cpp
@@ -84,6 +84,8 @@ static void compare_image_2d_and_1d_array(void)
free(dst0);
free(dst1);
+ free(image_data1);
+ free(image_data2);
OCL_CALL(clReleaseSampler, sampler);
}
diff --git a/utests/compiler_fill_image_1d_array.cpp b/utests/compiler_fill_image_1d_array.cpp
index 67f96436..23a84255 100644
--- a/utests/compiler_fill_image_1d_array.cpp
+++ b/utests/compiler_fill_image_1d_array.cpp
@@ -69,6 +69,7 @@ static void compiler_fill_image_1d_array(void)
for (uint32_t i = 0; i < w; i++) {
OCL_ASSERT(dst[(array - 1)*w + i] == 0x0);
}
+ free(src);
free(dst);
}
diff --git a/utests/compiler_function_qualifiers.cpp b/utests/compiler_function_qualifiers.cpp
index 622313c5..4599c957 100644
--- a/utests/compiler_function_qualifiers.cpp
+++ b/utests/compiler_function_qualifiers.cpp
@@ -13,6 +13,7 @@ void compiler_function_qualifiers(void)
param_value = malloc(param_value_size);
err = clGetKernelInfo(kernel, CL_KERNEL_ATTRIBUTES, param_value_size, param_value, NULL);
OCL_ASSERT(err == CL_SUCCESS);
+ free(param_value);
}
MAKE_UTEST_FROM_FUNCTION(compiler_function_qualifiers);
diff --git a/utests/image_1D_buffer.cpp b/utests/image_1D_buffer.cpp
index e2cfcde5..f2eb7a3b 100644
--- a/utests/image_1D_buffer.cpp
+++ b/utests/image_1D_buffer.cpp
@@ -60,6 +60,7 @@ void image_1D_buffer(void)
}
OCL_UNMAP_BUFFER(0);
OCL_UNMAP_BUFFER(1);
+ free(buf_content);
}
MAKE_UTEST_FROM_FUNCTION(image_1D_buffer);
diff --git a/utests/load_program_from_gen_bin.cpp b/utests/load_program_from_gen_bin.cpp
index 3db13b28..7504aa3e 100644
--- a/utests/load_program_from_gen_bin.cpp
+++ b/utests/load_program_from_gen_bin.cpp
@@ -88,6 +88,10 @@ static void test_load_program_from_gen_bin(void)
OCL_ASSERT(((float *)buf_data[1])[i] == cpu_dst[i]);
OCL_UNMAP_BUFFER(1);
}
+ cl_file_map_delete(fm);
+ clReleaseProgram(bin_program);
+ free(binary);
+ free(ker_path);
}
MAKE_UTEST_FROM_FUNCTION(test_load_program_from_gen_bin);
diff --git a/utests/load_program_from_spir.cpp b/utests/load_program_from_spir.cpp
index 8ea1cd46..76dbef40 100644
--- a/utests/load_program_from_spir.cpp
+++ b/utests/load_program_from_spir.cpp
@@ -85,6 +85,8 @@ static void test_load_program_from_spir(void)
OCL_ASSERT(((float *)buf_data[1])[i] == cpu_dst[i]);
OCL_UNMAP_BUFFER(1);
}
+ free(ker_path);
+ cl_file_map_delete(fm);
}
MAKE_UTEST_FROM_FUNCTION(test_load_program_from_spir);
diff --git a/utests/runtime_compile_link.cpp b/utests/runtime_compile_link.cpp
index 4a39b6a7..48c3fa1b 100644
--- a/utests/runtime_compile_link.cpp
+++ b/utests/runtime_compile_link.cpp
@@ -157,6 +157,14 @@ void runtime_compile_link(void)
}
OCL_UNMAP_BUFFER(2);
OCL_DESTROY_KERNEL_KEEP_PROGRAM(true);
+ clReleaseProgram(foo_pg);
+ clReleaseProgram(myinc_pg);
+ clReleaseProgram(program_A);
+ clReleaseProgram(program_B);
+ clReleaseProgram(linked_program);
+ clReleaseProgram(new_linked_program);
+ clReleaseProgram(program_with_binary);
+ free(binary);
}
MAKE_UTEST_FROM_FUNCTION(runtime_compile_link);
diff --git a/utests/utest_helper.cpp b/utests/utest_helper.cpp
index 9696dac7..4d2d4df6 100644
--- a/utests/utest_helper.cpp
+++ b/utests/utest_helper.cpp
@@ -365,6 +365,7 @@ cl_kernel_link(const char *file_name, const char *kernel_name, const char * link
program = clLinkProgram(ctx, 1, &device, link_opt, 1, input_programs, NULL, NULL, &status);
OCL_ASSERT(program != NULL);
OCL_ASSERT(status == CL_SUCCESS);
+ clReleaseProgram(input_programs[0]);
}
/* Create a kernel from the program */