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_016748,
27        "dEQP-GLES3.functional.shaders.",
28        "precision.int.highp_add_vertex");
29
30static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016749,
31        "dEQP-GLES3.functional.shaders.p",
32        "recision.int.highp_add_fragment");
33
34static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016750,
35        "dEQP-GLES3.functional.shaders.",
36        "precision.int.highp_sub_vertex");
37
38static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016751,
39        "dEQP-GLES3.functional.shaders.p",
40        "recision.int.highp_sub_fragment");
41
42static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016752,
43        "dEQP-GLES3.functional.shaders.",
44        "precision.int.highp_mul_vertex");
45
46static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016753,
47        "dEQP-GLES3.functional.shaders.p",
48        "recision.int.highp_mul_fragment");
49
50static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016754,
51        "dEQP-GLES3.functional.shaders.",
52        "precision.int.highp_div_vertex");
53
54static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016755,
55        "dEQP-GLES3.functional.shaders.p",
56        "recision.int.highp_div_fragment");
57
58static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016756,
59        "dEQP-GLES3.functional.shaders.p",
60        "recision.int.mediump_add_vertex");
61
62static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016757,
63        "dEQP-GLES3.functional.shaders.pr",
64        "ecision.int.mediump_add_fragment");
65
66static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016758,
67        "dEQP-GLES3.functional.shaders.p",
68        "recision.int.mediump_sub_vertex");
69
70static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016759,
71        "dEQP-GLES3.functional.shaders.pr",
72        "ecision.int.mediump_sub_fragment");
73
74static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016760,
75        "dEQP-GLES3.functional.shaders.p",
76        "recision.int.mediump_mul_vertex");
77
78static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016761,
79        "dEQP-GLES3.functional.shaders.pr",
80        "ecision.int.mediump_mul_fragment");
81
82static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016762,
83        "dEQP-GLES3.functional.shaders.p",
84        "recision.int.mediump_div_vertex");
85
86static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016763,
87        "dEQP-GLES3.functional.shaders.pr",
88        "ecision.int.mediump_div_fragment");
89
90static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016764,
91        "dEQP-GLES3.functional.shaders",
92        ".precision.int.lowp_add_vertex");
93
94static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016765,
95        "dEQP-GLES3.functional.shaders.",
96        "precision.int.lowp_add_fragment");
97
98static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016766,
99        "dEQP-GLES3.functional.shaders",
100        ".precision.int.lowp_sub_vertex");
101
102static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016767,
103        "dEQP-GLES3.functional.shaders.",
104        "precision.int.lowp_sub_fragment");
105
106static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016768,
107        "dEQP-GLES3.functional.shaders",
108        ".precision.int.lowp_mul_vertex");
109
110static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016769,
111        "dEQP-GLES3.functional.shaders.",
112        "precision.int.lowp_mul_fragment");
113
114static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016770,
115        "dEQP-GLES3.functional.shaders",
116        ".precision.int.lowp_div_vertex");
117
118static SHRINK_HWTEST_F(ActsDeqpgles30017TestSuite, TestCase_016771,
119        "dEQP-GLES3.functional.shaders.",
120        "precision.int.lowp_div_fragment");
121