summaryrefslogtreecommitdiff
path: root/utests
diff options
context:
space:
mode:
authorRebecca N. Palmer <rebecca_palmer@zoho.com>2016-10-08 14:26:50 +0100
committerYang Rong <rong.r.yang@intel.com>2016-10-10 22:30:45 +0800
commit5535542122c5bbb4d88c0058a80048154c924e9b (patch)
treede7952e1d257d84acbd0227d5f42a601b65d431e /utests
parent4fff269be888225c01eb46eba24448efd4106e24 (diff)
downloadbeignet-5535542122c5bbb4d88c0058a80048154c924e9b.tar.gz
Utests: Don't end an all-tests run when one test fails
Signed-off-by: Rebecca N. Palmer <rebecca_palmer@zoho.com> Reviewed-by: Yang Rong <rong.r.yang@intel.com>
Diffstat (limited to 'utests')
-rw-r--r--utests/builtin_global_linear_id.cpp2
-rw-r--r--utests/builtin_global_size.cpp2
-rw-r--r--utests/builtin_kernel_block_motion_estimate_intel.cpp4
-rw-r--r--utests/builtin_local_size.cpp2
-rw-r--r--utests/builtin_num_groups.cpp2
-rw-r--r--utests/runtime_climage_from_boname.cpp2
-rw-r--r--utests/runtime_flat_address_space.cpp2
7 files changed, 8 insertions, 8 deletions
diff --git a/utests/builtin_global_linear_id.cpp b/utests/builtin_global_linear_id.cpp
index 24e1d2e5..3e925185 100644
--- a/utests/builtin_global_linear_id.cpp
+++ b/utests/builtin_global_linear_id.cpp
@@ -62,7 +62,7 @@ static void builtin_global_linear_id(void)
if (err != CL_SUCCESS)
{
printf("Error: Failed to execute kernel! %d\n", err);
- exit(1);
+ OCL_ASSERT(0);
}
clFinish(queue);
diff --git a/utests/builtin_global_size.cpp b/utests/builtin_global_size.cpp
index a2ec24a6..51ad0540 100644
--- a/utests/builtin_global_size.cpp
+++ b/utests/builtin_global_size.cpp
@@ -74,7 +74,7 @@ static void builtin_global_size(void)
if (err != CL_SUCCESS)
{
printf("Error: Failed to write to source array!\n");
- exit(1);
+ OCL_ASSERT(0);
}
// Run the kernel
diff --git a/utests/builtin_kernel_block_motion_estimate_intel.cpp b/utests/builtin_kernel_block_motion_estimate_intel.cpp
index 5a48753b..15bf7611 100644
--- a/utests/builtin_kernel_block_motion_estimate_intel.cpp
+++ b/utests/builtin_kernel_block_motion_estimate_intel.cpp
@@ -41,7 +41,7 @@ void builtin_kernel_block_motion_estimate_intel(void)
#endif
if(!oclCreateAcceleratorIntel){
fprintf(stderr, "Failed to get extension clCreateImageFromLibvaIntel\n");
- exit(1);
+ OCL_ASSERT(0);
}
cl_accelerator_intel accel = oclCreateAcceleratorIntel(ctx, CL_ACCELERATOR_TYPE_MOTION_ESTIMATION_INTEL,sizeof(cl_motion_estimation_desc_intel), &vmedesc, &err);
OCL_ASSERT(accel != NULL);
@@ -123,7 +123,7 @@ void builtin_kernel_block_motion_estimate_intel(void)
#endif
if(!oclReleaseAcceleratorIntel){
fprintf(stderr, "Failed to get extension clCreateImageFromLibvaIntel\n");
- exit(1);
+ OCL_ASSERT(0);
}
oclReleaseAcceleratorIntel(accel);
clReleaseProgram(built_in_prog);
diff --git a/utests/builtin_local_size.cpp b/utests/builtin_local_size.cpp
index 491175db..a55769b3 100644
--- a/utests/builtin_local_size.cpp
+++ b/utests/builtin_local_size.cpp
@@ -59,7 +59,7 @@ static void builtin_local_size(void)
if (err != CL_SUCCESS)
{
printf("Error: Failed to write to source array!\n");
- exit(1);
+ OCL_ASSERT(0);
}
// Run the kernel
diff --git a/utests/builtin_num_groups.cpp b/utests/builtin_num_groups.cpp
index 832766e9..764c70b7 100644
--- a/utests/builtin_num_groups.cpp
+++ b/utests/builtin_num_groups.cpp
@@ -56,7 +56,7 @@ static void builtin_num_groups(void)
if (err != CL_SUCCESS)
{
printf("Error: Failed to write to source array!\n");
- exit(1);
+ OCL_ASSERT(0);
}
// Run the kernel
diff --git a/utests/runtime_climage_from_boname.cpp b/utests/runtime_climage_from_boname.cpp
index 21608862..a228c977 100644
--- a/utests/runtime_climage_from_boname.cpp
+++ b/utests/runtime_climage_from_boname.cpp
@@ -161,7 +161,7 @@ void runtime_climage_from_boname(void)
#endif
if(!oclCreateImageFromLibvaIntel){
fprintf(stderr, "Failed to get extension clCreateImageFromLibvaIntel\n");
- exit(1);
+ OCL_ASSERT(0);
}
cl_mem dst = oclCreateImageFromLibvaIntel(ctx, &imageParam, NULL);
diff --git a/utests/runtime_flat_address_space.cpp b/utests/runtime_flat_address_space.cpp
index cf94cf55..c2d25dee 100644
--- a/utests/runtime_flat_address_space.cpp
+++ b/utests/runtime_flat_address_space.cpp
@@ -59,7 +59,7 @@ main(int argc, char *argv[])
for (uint32_t i = 0; dst_buffer && i < n; ++i)
if (dst_buffer[i] != int(i)) {
fprintf(stderr, "run-time flat address space failed\n");
- exit(-1);
+ OCL_ASSERT(0);
}
clEnqueueUnmapMemObject(queue, dst[j], dst_buffer, 0, NULL, NULL);
}