Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
2573cd9d
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
接近 2 年 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
2573cd9d
编写于
6月 28, 2022
作者:
Z
zengjingxi
提交者:
hewenbiao
6月 28, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test
Signed-off-by:
N
zengjingxi
<
zengjingxi@kaihongdigi.com
>
上级
997b580a
变更
8
展开全部
隐藏空白更改
内联
并排
Showing
8 changed file
with
2390 addition
and
0 deletion
+2390
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_builtinTestCase.cpp
...khrgles3/shaders/Khrgles3preprocessor_builtinTestCase.cpp
+130
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_function_definitionsTestCase.cpp
...ers/Khrgles3preprocessor_function_definitionsTestCase.cpp
+184
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_invalid_definitionsTestCase.cpp
...ders/Khrgles3preprocessor_invalid_definitionsTestCase.cpp
+184
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_invalid_opsTestCase.cpp
...les3/shaders/Khrgles3preprocessor_invalid_opsTestCase.cpp
+508
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_invalid_redefinitionsTestCase.cpp
...rs/Khrgles3preprocessor_invalid_redefinitionsTestCase.cpp
+130
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_object_redefinitionsTestCase.cpp
...ers/Khrgles3preprocessor_object_redefinitionsTestCase.cpp
+832
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_pragmasTestCase.cpp
...khrgles3/shaders/Khrgles3preprocessor_pragmasTestCase.cpp
+130
-0
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_recursionTestCase.cpp
...rgles3/shaders/Khrgles3preprocessor_recursionTestCase.cpp
+292
-0
未找到文件。
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_builtinTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
/*
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include "../Khrgles3BaseFunc.h"
#include "../ActsKhrgles30002TestSuite.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
using
namespace
OHOS
;
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001206
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001206 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preproc"
"essor.builtin.line_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001206 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001206 end"
;
}
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001207
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001207 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preproce"
"ssor.builtin.line_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001207 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001207 end"
;
}
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001208
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001208 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocesso"
"r.builtin.line_and_file_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001208 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001208 end"
;
}
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001209
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001209 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor"
".builtin.line_and_file_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001209 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001209 end"
;
}
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_function_definitionsTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
/*
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include "../Khrgles3BaseFunc.h"
#include "../ActsKhrgles30001TestSuite.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
using
namespace
OHOS
;
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000968
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000968 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.function_defi"
"nitions.same_object_and_function_param_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000968 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000968 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000969
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000969 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.function_defin"
"itions.same_object_and_function_param_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000969 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000969 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000970
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000970 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.func"
"tion_definitions.complex_func_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000970 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000970 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000971
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000971 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.funct"
"ion_definitions.complex_func_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000971 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000971 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000972
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000972 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.function_defini"
"tions.function_definition_with_comments_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000972 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000972 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000973
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000973 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.function_definit"
"ions.function_definition_with_comments_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000973 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000973 end"
;
}
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_invalid_definitionsTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
/*
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include "../Khrgles3BaseFunc.h"
#include "../ActsKhrgles30001TestSuite.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
using
namespace
OHOS
;
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000908
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000908 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_"
"definitions.define_non_identifier_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000908 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000908 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000909
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000909 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_d"
"efinitions.define_non_identifier_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000909 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000909 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000910
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000910 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_d"
"efinitions.undef_non_identifier_1_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000910 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000910 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000911
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000911 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_de"
"finitions.undef_non_identifier_1_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000911 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000911 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000912
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000912 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_d"
"efinitions.undef_non_identifier_2_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000912 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000912 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000913
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000913 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_de"
"finitions.undef_non_identifier_2_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000913 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000913 end"
;
}
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_invalid_opsTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
此差异已折叠。
点击以展开。
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_invalid_redefinitionsTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
/*
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include "../Khrgles3BaseFunc.h"
#include "../ActsKhrgles30001TestSuite.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
using
namespace
OHOS
;
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000944
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000944 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_r"
"edefinitions.invalid_identifier_1_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000944 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000944 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000945
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000945 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_re"
"definitions.invalid_identifier_1_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000945 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000945 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000946
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000946 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_r"
"edefinitions.invalid_identifier_2_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000946 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000946 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000947
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000947 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.invalid_re"
"definitions.invalid_identifier_2_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000947 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000947 end"
;
}
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_object_redefinitionsTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
此差异已折叠。
点击以展开。
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_pragmasTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
/*
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include "../Khrgles3BaseFunc.h"
#include "../ActsKhrgles30002TestSuite.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
using
namespace
OHOS
;
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001210
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001210 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preproce"
"ssor.pragmas.pragma_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001210 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001210 end"
;
}
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001211
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001211 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preproces"
"sor.pragmas.pragma_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001211 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001211 end"
;
}
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001212
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001212 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor."
"pragmas.pragma_macro_exp_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001212 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001212 end"
;
}
static
HWTEST_F
(
ActsKhrgles30002TestSuite
,
TestCase_001213
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001213 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor.p"
"ragmas.pragma_macro_exp_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30002TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30002TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30002TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30002TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30002TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_001213 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_001213 end"
;
}
graphic/vkgl/src/khrgles3/shaders/Khrgles3preprocessor_recursionTestCase.cpp
0 → 100644
浏览文件 @
2573cd9d
/*
* Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include "../Khrgles3BaseFunc.h"
#include "../ActsKhrgles30001TestSuite.h"
using
namespace
std
;
using
namespace
testing
::
ext
;
using
namespace
OHOS
;
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000974
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000974 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocesso"
"r.recursion.recursion_1_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000974 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000974 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000975
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000975 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor"
".recursion.recursion_1_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000975 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000975 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000976
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000976 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocesso"
"r.recursion.recursion_2_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000976 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000976 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000977
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000977 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor"
".recursion.recursion_2_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000977 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000977 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000978
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000978 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocesso"
"r.recursion.recursion_3_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000978 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000978 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000979
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000979 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor"
".recursion.recursion_3_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000979 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000979 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000980
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000980 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocesso"
"r.recursion.recursion_4_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000980 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000980 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000981
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000981 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor"
".recursion.recursion_4_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000981 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000981 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000982
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000982 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocesso"
"r.recursion.recursion_5_vertex"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000982 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000982 end"
;
}
static
HWTEST_F
(
ActsKhrgles30001TestSuite
,
TestCase_000983
,
Function
|
MediumTest
|
Level2
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000983 start"
;
int
argc
=
3
;
const
char
*
argv
[
3
]
=
{
"."
,
"--deqp-case="
"KHR-GLES3.shaders.preprocessor"
".recursion.recursion_5_fragment"
,
"--deqp-archive-dir=/data/local/tmp/"
};
FuncRunResult
result
=
RunTestKHRGLES
(
argc
,
argv
);
ActsKhrgles30001TestSuite
::
runResult
.
numPassed
+=
result
.
numPassed
;
ActsKhrgles30001TestSuite
::
runResult
.
numFailed
+=
result
.
numFailed
;
ActsKhrgles30001TestSuite
::
runResult
.
numNotSupported
+=
result
.
numNotSupported
;
ActsKhrgles30001TestSuite
::
runResult
.
numWarnings
+=
result
.
numWarnings
;
ActsKhrgles30001TestSuite
::
runResult
.
numWaived
+=
result
.
numWaived
;
if
(
result
.
numNotSupported
==
1
)
{
GTEST_LOG_
(
INFO
)
<<
"TestCase_000983 notsupport!"
;
}
else
if
(
result
.
isComplete
)
{
EXPECT_TRUE
(
result
.
isComplete
);
EXPECT_TRUE
(
result
.
numPassed
==
1
);
};
GTEST_LOG_
(
INFO
)
<<
"TestCase_000983 end"
;
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录