1 //
2 // Copyright (c) 2017 The Khronos Group Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //    http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16 #include "harness/compat.h"
17 
18 #include <stdio.h>
19 #include <string.h>
20 #include "procs.h"
21 
22 test_definition test_list[] = {
23     ADD_TEST( quick_1d_explicit_local ),
24     ADD_TEST( quick_2d_explicit_local ),
25     ADD_TEST( quick_3d_explicit_local ),
26     ADD_TEST( quick_1d_implicit_local ),
27     ADD_TEST( quick_2d_implicit_local ),
28     ADD_TEST( quick_3d_implicit_local ),
29     ADD_TEST( full_1d_explicit_local ),
30     ADD_TEST( full_2d_explicit_local ),
31     ADD_TEST( full_3d_explicit_local ),
32     ADD_TEST( full_1d_implicit_local ),
33     ADD_TEST( full_2d_implicit_local ),
34     ADD_TEST( full_3d_implicit_local ),
35 };
36 
37 const int test_num = ARRAY_SIZE( test_list );
38 
main(int argc,const char * argv[])39 int main(int argc, const char *argv[])
40 {
41     return runTestHarness(argc, argv, test_num, test_list, false, 0);
42 }
43 
44