diff --git a/test_conformance/printf/test_printf.cpp b/test_conformance/printf/test_printf.cpp index a4af25de0..424b42d3f 100644 --- a/test_conformance/printf/test_printf.cpp +++ b/test_conformance/printf/test_printf.cpp @@ -983,7 +983,7 @@ int test_address_space(cl_device_id deviceID, cl_context context, } int test_mixed_format_random(cl_device_id deviceID, cl_context context, - cl_command_queue queue, int num_elements) + cl_command_queue queue, int num_elements) { return doTest(gQueue, gContext, TYPE_MIXED_FORMAT_RANDOM, deviceID); } @@ -1014,11 +1014,21 @@ int test_buffer_size(cl_device_id deviceID, cl_context context, } test_definition test_list[] = { - ADD_TEST(int), ADD_TEST(half), ADD_TEST(half_limits), - ADD_TEST(float), ADD_TEST(float_limits), ADD_TEST(octal), - ADD_TEST(unsigned), ADD_TEST(hexadecimal), ADD_TEST(char), - ADD_TEST(string), ADD_TEST(format_string), ADD_TEST(vector), - ADD_TEST(address_space), ADD_TEST(buffer_size), ADD_TEST(mixed_format_random), + ADD_TEST(int), + ADD_TEST(half), + ADD_TEST(half_limits), + ADD_TEST(float), + ADD_TEST(float_limits), + ADD_TEST(octal), + ADD_TEST(unsigned), + ADD_TEST(hexadecimal), + ADD_TEST(char), + ADD_TEST(string), + ADD_TEST(format_string), + ADD_TEST(vector), + ADD_TEST(address_space), + ADD_TEST(buffer_size), + ADD_TEST(mixed_format_random), }; const int test_num = ARRAY_SIZE( test_list ); diff --git a/test_conformance/printf/util_printf.cpp b/test_conformance/printf/util_printf.cpp index eb913bce6..6e44b43fd 100644 --- a/test_conformance/printf/util_printf.cpp +++ b/test_conformance/printf/util_printf.cpp @@ -1100,8 +1100,9 @@ testCase testCaseAddrSpace = { //---------------------------------------------------------- // Container related to mixed format tests. -// Empty records for which the format string and reference string are generated at run time. -// The size of this vector specifies the number of random tests that will be run. +// Empty records for which the format string and reference string are generated +// at run time. The size of this vector specifies the number of random tests +// that will be run. std::vector printMixedFormatGenParameters(64, { { "" } });