1/*
2 * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 *     http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <climits>
17#include <gtest/gtest.h>
18#include "../Deqpgles3BaseFunc.h"
19#include "../ActsDeqpgles30017TestSuite.h"
20#include "shrinkdefine.h"
21
22using namespace std;
23using namespace testing::ext;
24using namespace OHOS;
25
26static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016772,
27        "dEQP-GLES3.functional.shaders.",
28        "precision.uint.highp_add_vertex");
29
30static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016773,
31        "dEQP-GLES3.functional.shaders.p",
32        "recision.uint.highp_add_fragment");
33
34static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016774,
35        "dEQP-GLES3.functional.shaders.",
36        "precision.uint.highp_sub_vertex");
37
38static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016775,
39        "dEQP-GLES3.functional.shaders.p",
40        "recision.uint.highp_sub_fragment");
41
42static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016776,
43        "dEQP-GLES3.functional.shaders.",
44        "precision.uint.highp_mul_vertex");
45
46static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016777,
47        "dEQP-GLES3.functional.shaders.p",
48        "recision.uint.highp_mul_fragment");
49
50static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016778,
51        "dEQP-GLES3.functional.shaders.",
52        "precision.uint.highp_div_vertex");
53
54static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016779,
55        "dEQP-GLES3.functional.shaders.p",
56        "recision.uint.highp_div_fragment");
57
58static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016780,
59        "dEQP-GLES3.functional.shaders.p",
60        "recision.uint.mediump_add_vertex");
61
62static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016781,
63        "dEQP-GLES3.functional.shaders.pr",
64        "ecision.uint.mediump_add_fragment");
65
66static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016782,
67        "dEQP-GLES3.functional.shaders.p",
68        "recision.uint.mediump_sub_vertex");
69
70static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016783,
71        "dEQP-GLES3.functional.shaders.pr",
72        "ecision.uint.mediump_sub_fragment");
73
74static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016784,
75        "dEQP-GLES3.functional.shaders.p",
76        "recision.uint.mediump_mul_vertex");
77
78static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016785,
79        "dEQP-GLES3.functional.shaders.pr",
80        "ecision.uint.mediump_mul_fragment");
81
82static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016786,
83        "dEQP-GLES3.functional.shaders.p",
84        "recision.uint.mediump_div_vertex");
85
86static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016787,
87        "dEQP-GLES3.functional.shaders.pr",
88        "ecision.uint.mediump_div_fragment");
89
90static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016788,
91        "dEQP-GLES3.functional.shaders.",
92        "precision.uint.lowp_add_vertex");
93
94static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016789,
95        "dEQP-GLES3.functional.shaders.p",
96        "recision.uint.lowp_add_fragment");
97
98static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016790,
99        "dEQP-GLES3.functional.shaders.",
100        "precision.uint.lowp_sub_vertex");
101
102static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016791,
103        "dEQP-GLES3.functional.shaders.p",
104        "recision.uint.lowp_sub_fragment");
105
106static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016792,
107        "dEQP-GLES3.functional.shaders.",
108        "precision.uint.lowp_mul_vertex");
109
110static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016793,
111        "dEQP-GLES3.functional.shaders.p",
112        "recision.uint.lowp_mul_fragment");
113
114static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016794,
115        "dEQP-GLES3.functional.shaders.",
116        "precision.uint.lowp_div_vertex");
117
118static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016795,
119        "dEQP-GLES3.functional.shaders.p",
120        "recision.uint.lowp_div_fragment");
121