From 313fb94fcc3893ad3f4488e0848b0e06b51b6689 Mon Sep 17 00:00:00 2001 From: Radek Szymanski Date: Mon, 5 Aug 2019 13:55:55 +0100 Subject: [PATCH] Remove redundant prints from integer_ops (#425) The test harness already prints if the test passed, no need to duplicate this information. Signed-off-by: Radek Szymanski --- test_conformance/integer_ops/test_abs.c | 1 - test_conformance/integer_ops/test_absdiff.c | 1 - test_conformance/integer_ops/test_add_sat.c | 2 -- test_conformance/integer_ops/test_popcount.c | 1 - test_conformance/integer_ops/test_sub_sat.c | 1 - 5 files changed, 6 deletions(-) diff --git a/test_conformance/integer_ops/test_abs.c b/test_conformance/integer_ops/test_abs.c index 10c3a94a..24d0555b 100644 --- a/test_conformance/integer_ops/test_abs.c +++ b/test_conformance/integer_ops/test_abs.c @@ -324,7 +324,6 @@ int test_integer_abs(cl_device_id device, cl_context context, cl_command_queue q log_info("Failed on %d types\n", fail_count); return -1; } - log_info("ABS test passed\n"); free(input_ptr); free(output_ptr); diff --git a/test_conformance/integer_ops/test_absdiff.c b/test_conformance/integer_ops/test_absdiff.c index ba81abda..7459bd2d 100644 --- a/test_conformance/integer_ops/test_absdiff.c +++ b/test_conformance/integer_ops/test_absdiff.c @@ -362,7 +362,6 @@ int test_integer_abs_diff(cl_device_id device, cl_context context, cl_command_qu log_info("Failed on %d types\n", fail_count); return -1; } - log_info("ABS_DIFF test passed\n"); free(input_ptr[0]); free(input_ptr[1]); diff --git a/test_conformance/integer_ops/test_add_sat.c b/test_conformance/integer_ops/test_add_sat.c index 48ccca4b..c0e45d11 100644 --- a/test_conformance/integer_ops/test_add_sat.c +++ b/test_conformance/integer_ops/test_add_sat.c @@ -366,8 +366,6 @@ int test_integer_add_sat(cl_device_id device, cl_context context, cl_command_que return -1; } - log_info("ADD_SAT test passed\n"); - free(input_ptr[0]); free(input_ptr[1]); free(output_ptr); diff --git a/test_conformance/integer_ops/test_popcount.c b/test_conformance/integer_ops/test_popcount.c index a621493c..31e40615 100644 --- a/test_conformance/integer_ops/test_popcount.c +++ b/test_conformance/integer_ops/test_popcount.c @@ -237,7 +237,6 @@ int test_popcount(cl_device_id device, cl_context context, cl_command_queue queu log_info("Failed on %d types\n", fail_count); return -1; } - log_info("popcount test passed\n"); free(input_ptr[0]); free(output_ptr); diff --git a/test_conformance/integer_ops/test_sub_sat.c b/test_conformance/integer_ops/test_sub_sat.c index 1856103b..845d1064 100644 --- a/test_conformance/integer_ops/test_sub_sat.c +++ b/test_conformance/integer_ops/test_sub_sat.c @@ -364,7 +364,6 @@ int test_integer_sub_sat(cl_device_id device, cl_context context, cl_command_que log_info("Failed on %d types\n", fail_count); return -1; } - log_info("SUB_SAT test passed\n"); free(input_ptr[0]); free(input_ptr[1]);