Fix test executable names in CSV files (#705)

The following test executable name changes have been made in the
conformance CSV files to match those found in the `test_conformance`
build directory:

* `contractions` -> `test_contractions`
* `computeinfo` -> `test_computeinfo`
* `bruteforce` -> `test_bruteforce`
* `Test_half` -> `test_half`
* `test_SVM` -> `test_svm`
This commit is contained in:
Kenneth Benzie
2020-03-25 14:27:36 +00:00
committed by GitHub
parent efaf024035
commit c2dfe8cf25
11 changed files with 34 additions and 34 deletions

View File

@@ -5,7 +5,7 @@
# #########################################
# Basic Information on the compute device
# #########################################
Compute Info,computeinfo/computeinfo
Compute Info,computeinfo/test_computeinfo
# #########################################
# Basic operation tests
@@ -76,10 +76,10 @@ OpenCL-GL Sharing,gl/test_gl
# #########################################
Select,select/test_select
Conversions,conversions/test_conversions
Contractions,contractions/contractions
Math,math_brute_force/bruteforce
Contractions,contractions/test_contractions
Math,math_brute_force/test_bruteforce
Integer Ops,integer_ops/test_integer_ops
Half Ops,half/Test_half
Half Ops,half/test_half
#####################################
# OpenCL 2.0 tests
@@ -89,7 +89,7 @@ Execution Model,device_execution/test_device_execution
Generic Address Space,generic_address_space/test_generic_address_space
Non Uniform Work Groups,non_uniform_work_group/test_non_uniform_work_group
Pipes,pipes/test_pipes
SVM,SVM/test_SVM
SVM,SVM/test_svm
Workgroups,workgroups/test_workgroups
#########################################
@@ -99,4 +99,4 @@ SPIR,spir/test_spir
Mipmaps (Kernel),images/kernel_read_write/test_image_streams test_mipmaps CL_FILTER_NEAREST
Mipmaps (clCopyImage),images/clCopyImage/test_cl_copy_images test_mipmaps
Mipmaps (clReadWriteImage),images/clReadWriteImage/test_cl_read_write_images test_mipmaps
Subgroups,subgroups/test_subgroups
Subgroups,subgroups/test_subgroups
1 #
5 # Basic Information on the compute device
6 # #########################################
7 Compute Info,computeinfo/computeinfo Compute Info,computeinfo/test_computeinfo
8 # #########################################
9 # Basic operation tests
10 # #########################################
11 Basic,basic/test_basic
76 # OpenCL 2.0 tests
77 #####################################
78 C11 Atomics,c11_atomics/test_c11_atomics
79 Execution Model,device_execution/test_device_execution
80 Generic Address Space,generic_address_space/test_generic_address_space
81 Non Uniform Work Groups,non_uniform_work_group/test_non_uniform_work_group
82 Pipes,pipes/test_pipes
83 SVM,SVM/test_SVM SVM,SVM/test_svm
84 Workgroups,workgroups/test_workgroups
85 #########################################
89 Mipmaps (Kernel),images/kernel_read_write/test_image_streams test_mipmaps CL_FILTER_NEAREST
90 Mipmaps (clCopyImage),images/clCopyImage/test_cl_copy_images test_mipmaps
91 Mipmaps (clReadWriteImage),images/clReadWriteImage/test_cl_read_write_images test_mipmaps
92 Subgroups,subgroups/test_subgroups
93
94
95
99
100
101
102