Commit cfffc138 by Jamie Madill Committed by Commit Bot

Add KHR-GLES dEQP tests.

This reorganizes the dEQP build targets to allow for better reuse with the new KHR test set. It also adds a single new test target called "angle_deqp_khr_tests" that houses all the new test sets. The new test targets can be compiled now but cannot yet be executed. That new functionality will follow in a subsequent CL. Along with test expectations and integration. Uses a new template type in the build to conslidate GN customization. Adds the GLES 2.0 and 3.0 tests for now. We can follow up with additional work for the GLES 3.1+ tests. Also adds test expectations. Bug: angleproject:3353 Change-Id: Ib0673e97f679c8aa46e27dfa616845a2014a75fe Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1604070 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org>
parent 04e389d1
......@@ -575,6 +575,8 @@ if (build_angle_deqp_tests && !is_fuchsia) {
"/wd4244", # possible loss of data
"/wd4245", # argument signed/unsigned mismatch
"/wd4297", # function assumed not to throw an exception but does
"/wd4302", # truncation
"/wd4311", # pointer truncation
"/wd4389", # signed/unsigned mismatch
"/wd4510", # default constructor could not be generated
"/wd4512",
......@@ -607,7 +609,10 @@ if (build_angle_deqp_tests && !is_fuchsia) {
if (is_clang) {
# TODO(jmadill): Remove this once we fix dEQP.
cflags_c = [ "-Wno-unused-local-typedef" ]
cflags_cc = [ "-Wno-unused-local-typedef" ]
cflags_cc = [
"-Wno-unused-local-typedef",
"-Wno-string-conversion", # implicit conversion turns string literal into bool
]
}
# Ask the system headers to expose all the regular function otherwise
......@@ -638,10 +643,35 @@ if (build_angle_deqp_tests && !is_fuchsia) {
]
}
angle_static_library("angle_deqp_decpp") {
set_defaults("angle_deqp_source_set") {
public_configs = []
configs = angle_common_configs
}
template("angle_deqp_source_set") {
angle_source_set(target_name) {
forward_variables_from(invoker, "*")
suppressed_configs += deqp_undefine_configs
}
}
config("angle_deqp_framework_debase_config") {
include_dirs = [ "$deqp_path/framework/delibs/debase" ]
}
angle_deqp_source_set("angle_deqp_framework_debase") {
public_configs += [ ":angle_deqp_framework_debase_config" ]
sources = deqp_framework_debase_sources
}
config("angle_deqp_framework_decpp_config") {
include_dirs = [ "$deqp_path/framework/delibs/decpp" ]
}
angle_deqp_source_set("angle_deqp_framework_decpp") {
public_configs += [
":angle_deqp_support",
":angle_deqp_framework_decpp_config",
"//build/config/compiler:exceptions",
"//build/config/compiler:no_chromium_code",
]
......@@ -653,7 +683,11 @@ if (build_angle_deqp_tests && !is_fuchsia) {
]
}
sources = deqp_libtester_decpp_sources
public_deps = [
":angle_deqp_framework_debase",
":angle_deqp_framework_delibs",
]
sources = deqp_framework_decpp_sources
}
config("angle_deqp_libtester_config") {
......@@ -672,26 +706,123 @@ if (build_angle_deqp_tests && !is_fuchsia) {
}
}
angle_static_library("angle_deqp_libtester") {
config("angle_deqp_framework_delibs_config") {
include_dirs = [
"$deqp_path/framework/delibs/debase",
"$deqp_path/framework/delibs/depool",
"$deqp_path/framework/delibs/dethread",
"$deqp_path/framework/delibs/deutil",
"$deqp_path/framework/delibs/destream",
]
}
angle_deqp_source_set("angle_deqp_framework_delibs") {
sources = deqp_framework_delibs_sources
if (is_win) {
sources += deqp_framework_delibs_sources_win
}
if (is_linux || is_android || is_mac) {
sources += deqp_framework_delibs_sources_unix
}
public_configs = [
":angle_deqp_framework_delibs_config",
":angle_deqp_support",
]
public_deps = [
":angle_deqp_framework_debase",
]
}
config("angle_deqp_framework_common_config") {
include_dirs = [
"$deqp_path/framework/common",
"$deqp_path/framework/randomshaders",
"$deqp_path/framework/referencerenderer",
]
}
angle_deqp_source_set("angle_deqp_framework_common") {
sources = deqp_framework_common_sources
public_configs = [ ":angle_deqp_framework_common_config" ]
public_deps = [
":angle_deqp_decpp",
":angle_deqp_framework_decpp",
":angle_deqp_framework_qphelper",
]
}
config("angle_deqp_framework_opengl_config") {
include_dirs = [
"$deqp_path/framework/opengl",
"$deqp_path/framework/opengl/simplereference",
"$deqp_path/framework/opengl/wrapper",
]
}
angle_deqp_source_set("angle_deqp_framework_opengl") {
sources = deqp_framework_opengl_sources
public_configs = [ ":angle_deqp_framework_opengl_config" ]
public_deps = [
":angle_deqp_framework_common",
]
}
config("angle_deqp_framework_egl_config") {
include_dirs = [
"$deqp_path/framework/egl",
"$deqp_path/framework/egl/wrapper",
]
}
angle_deqp_source_set("angle_deqp_framework_egl") {
sources = deqp_framework_egl_sources
public_configs = [ ":angle_deqp_framework_egl_config" ]
public_deps = [
":angle_deqp_framework_opengl",
]
}
config("angle_deqp_framework_qphelper_config") {
include_dirs = [ "$deqp_path/framework/qphelper" ]
}
angle_deqp_source_set("angle_deqp_framework_qphelper") {
sources = deqp_framework_qphelper_sources
public_deps = [
":angle_deqp_framework_delibs",
"${angle_libpng_dir}:libpng",
]
public_configs = [ ":angle_deqp_framework_qphelper_config" ]
}
config("angle_deqp_glshared_config") {
include_dirs = [ "$deqp_path/modules/glshared" ]
}
angle_deqp_source_set("angle_deqp_glshared") {
sources = deqp_glshared_sources
public_deps = [
":angle_deqp_framework_opengl",
]
public_configs = [ ":angle_deqp_glshared_config" ]
}
angle_deqp_source_set("angle_deqp_libtester") {
public_deps = [
":angle_deqp_framework_common",
":angle_deqp_framework_egl",
":angle_deqp_glshared",
"${angle_root}:angle_common",
"${angle_root}:angle_util",
"${angle_root}:libEGL${angle_libs_suffix}",
"${angle_root}:libGLESv2${angle_libs_suffix}",
]
suppressed_configs += deqp_undefine_configs
configs += [ "${angle_root}:library_name_config" ]
public_configs += [ ":angle_deqp_libtester_config" ]
sources = deqp_libtester_sources
if (is_win) {
sources += deqp_libtester_sources_win
}
if (is_linux || is_android || is_mac) {
sources += deqp_libtester_sources_unix
}
if (is_android) {
sources += deqp_libtester_sources_android
libs = [ "log" ]
......@@ -712,32 +843,41 @@ if (build_angle_deqp_tests && !is_fuchsia) {
}
set_defaults("angle_deqp_gtest") {
deps = []
sources = []
deqp_data_dir = "data"
data = []
}
template("angle_deqp_gtest") {
config_name = "angle_deqp_${target_name}_config"
_api = target_name
config_name = "angle_deqp_${_api}_config"
config(config_name) {
defines = invoker.defines
defines += [ "ANGLE_DEQP_DATA_DIR=\"${invoker.deqp_data_dir}\"" ]
}
shared_library_name = "angle_deqp_lib${target_name}"
shared_library_name = "angle_deqp_lib${_api}"
angle_shared_library(shared_library_name) {
forward_variables_from(invoker,
"*",
[
"mustpass_dir",
"data",
"deqp_data_dir",
])
deps = [
deps += [
":angle_deqp_libtester",
"${angle_root}:angle_util",
"$angle_root:angle_util",
]
suppressed_configs += deqp_undefine_configs
public_configs += [ ":$config_name" ]
sources += [
"deqp_support/angle_deqp_libtester.h",
"deqp_support/angle_deqp_libtester_main.cpp",
"deqp_support/tcuANGLEPlatform.cpp",
"deqp_support/tcuANGLEPlatform.h",
......@@ -745,7 +885,7 @@ if (build_angle_deqp_tests && !is_fuchsia) {
}
if (!build_with_chromium) {
angle_executable("angle_deqp_${target_name}_no_gtest") {
angle_executable("angle_deqp_${_api}_no_gtest") {
sources = [
"deqp_support/angle_deqp_tests_main.cpp",
]
......@@ -755,7 +895,7 @@ if (build_angle_deqp_tests && !is_fuchsia) {
}
}
angle_test("angle_deqp_${target_name}_tests") {
angle_test("angle_deqp_${_api}_tests") {
deps = [
":${shared_library_name}",
":angle_deqp_gtest_support",
......@@ -766,7 +906,12 @@ if (build_angle_deqp_tests && !is_fuchsia) {
"deqp_support/angle_deqp_gtest.cpp",
]
data = invoker.data
_deqp_data_dir = invoker.deqp_data_dir
data = invoker.data + [
"deqp_support/deqp_${_api}_test_expectations.txt",
"$deqp_path/$_deqp_data_dir/",
]
if (is_android) {
use_native_activity = true
......@@ -774,40 +919,107 @@ if (build_angle_deqp_tests && !is_fuchsia) {
}
}
set_defaults("angle_deqp_gtest_with_data") {
set_defaults("angle_deqp_gtest_with_mustpass") {
# Default the master lists to the Khronos version. The EGL tests must override this.
mustpass_dir = "external/openglcts/data/mustpass/gles/aosp_mustpass"
}
template("angle_deqp_gtest_with_data") {
template("angle_deqp_gtest_with_mustpass") {
angle_deqp_gtest(target_name) {
forward_variables_from(invoker, "*")
data = [
"$deqp_path/$mustpass_dir/master/${target_name}-master.txt",
"$deqp_path/data/",
"deqp_support/deqp_${target_name}_test_expectations.txt",
]
}
}
angle_deqp_gtest_with_data("gles2") {
angle_deqp_gtest_with_mustpass("gles2") {
defines = [ "ANGLE_DEQP_GLES2_TESTS" ]
sources = deqp_gles2_sources
}
angle_deqp_gtest_with_data("gles3") {
angle_deqp_gtest_with_mustpass("gles3") {
defines = [ "ANGLE_DEQP_GLES3_TESTS" ]
sources = deqp_gles3_sources
}
angle_deqp_gtest_with_data("gles31") {
angle_deqp_gtest_with_mustpass("gles31") {
defines = [ "ANGLE_DEQP_GLES31_TESTS" ]
sources = deqp_gles31_sources
}
angle_deqp_gtest_with_data("egl") {
angle_deqp_gtest_with_mustpass("egl") {
defines = [ "ANGLE_DEQP_EGL_TESTS" ]
sources = deqp_egl_sources
mustpass_dir = "android/cts"
}
# The CTS also includes a set of "KHR" tests that are separate from the main body of dEQP tests.
config("angle_deqp_khr_common_config") {
include_dirs = [
"$deqp_path/external/openglcts/modules/common",
"$deqp_path/external/openglcts/modules/gl",
"$deqp_path/external/openglcts/modules/gles2",
"$deqp_path/external/openglcts/modules/gles3",
"$deqp_path/external/openglcts/modules/gles31",
"$deqp_path/external/openglcts/modules/gles32",
"$deqp_path/external/openglcts/modules/glesext",
]
if (is_clang) {
cflags = [ "-Wno-header-hygiene" ] # using namespace directive in global context in header
}
}
angle_deqp_source_set("angle_deqp_khr_common") {
sources = deqp_khr_common_sources + deqp_khr_test_module_headers +
deqp_khr_gl_sources + deqp_khr_gles2_sources +
deqp_khr_gles3_sources + deqp_khr_gles31_sources +
deqp_khr_gles32_sources + deqp_khr_glesext_sources +
[ "deqp_support/glcTestPackageEntry_override.cpp" ]
public_deps = [
":angle_deqp_framework_egl",
":angle_deqp_glshared",
]
public_configs = [ ":angle_deqp_khr_common_config" ]
# This is a bit of a hack so one test can capture memory limits.
include_dirs = [ "$deqp_path/external/vulkancts/framework/vulkan" ]
}
angle_deqp_gtest("khr_gles2") {
defines = [ "ANGLE_DEQP_KHR_GLES2_TESTS" ]
deps = [
":angle_deqp_khr_common",
]
deqp_data_dir = data_dir
}
# The KHR dEQP tests expect a root prefix of "gl_cts" for some reason.
# This means we need an extra copy step to make them happy.
copy("angle_deqp_khr_gles3_shaders") {
sources = [
"$deqp_path/external/openglcts/data/gles3/arrays.test",
"$deqp_path/external/openglcts/data/gles3/declarations.test",
"$deqp_path/external/openglcts/data/gles3/literal_parsing.test",
"$deqp_path/external/openglcts/data/gles3/name_hiding.test",
"$deqp_path/external/openglcts/data/gles3/preprocessor.test",
"$deqp_path/external/openglcts/data/gles3/switch.test",
]
outputs = [
"$root_out_dir/$data_dir/gl_cts/data/gles3/{{source_file_part}}",
]
}
angle_deqp_gtest("khr_gles3") {
defines = [ "ANGLE_DEQP_KHR_GLES3_TESTS" ]
deps = [
":angle_deqp_khr_common",
":angle_deqp_khr_gles3_shaders",
]
deqp_data_dir = data_dir
}
}
......@@ -7,22 +7,7 @@ deqp_path = "../../third_party/deqp/src"
deqp_include_dirs = [
"$deqp_path/executor",
"$deqp_path/execserver",
"$deqp_path/framework/common",
"$deqp_path/framework/delibs/debase",
"$deqp_path/framework/delibs/decpp",
"$deqp_path/framework/delibs/depool",
"$deqp_path/framework/delibs/dethread",
"$deqp_path/framework/delibs/deutil",
"$deqp_path/framework/delibs/destream",
"$deqp_path/framework/egl",
"$deqp_path/framework/egl/wrapper",
"$deqp_path/framework/opengl",
"$deqp_path/framework/opengl/simplereference",
"$deqp_path/framework/opengl/wrapper",
"$deqp_path/framework/platform/null",
"$deqp_path/framework/qphelper",
"$deqp_path/framework/randomshaders",
"$deqp_path/framework/referencerenderer",
"$deqp_path/modules/gles2",
"$deqp_path/modules/gles2/functional",
"$deqp_path/modules/gles2/accuracy",
......@@ -38,7 +23,6 @@ deqp_include_dirs = [
"$deqp_path/modules/gles31",
"$deqp_path/modules/gles31/functional",
"$deqp_path/modules/gles31/stress",
"$deqp_path/modules/glshared",
"$deqp_path/modules/glusecases",
]
......@@ -858,114 +842,554 @@ deqp_egl_sources = [
"$deqp_path/modules/egl/teglWideColorTests.hpp",
]
deqp_libtester_decpp_sources = [
"$deqp_path/framework/delibs/decpp/deArrayBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deBlockBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deCommandLine.cpp",
"$deqp_path/framework/delibs/decpp/deDefs.cpp",
"$deqp_path/framework/delibs/decpp/deDirectoryIterator.cpp",
"$deqp_path/framework/delibs/decpp/deDynamicLibrary.cpp",
"$deqp_path/framework/delibs/decpp/deFilePath.cpp",
"$deqp_path/framework/delibs/decpp/deMemPool.cpp",
"$deqp_path/framework/delibs/decpp/deMutex.cpp",
"$deqp_path/framework/delibs/decpp/dePoolArray.cpp",
"$deqp_path/framework/delibs/decpp/dePoolString.cpp",
"$deqp_path/framework/delibs/decpp/deProcess.cpp",
"$deqp_path/framework/delibs/decpp/deRandom.cpp",
"$deqp_path/framework/delibs/decpp/deRingBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deSemaphore.cpp",
"$deqp_path/framework/delibs/decpp/deSharedPtr.cpp",
"$deqp_path/framework/delibs/decpp/deSha1.cpp",
"$deqp_path/framework/delibs/decpp/deSocket.cpp",
"$deqp_path/framework/delibs/decpp/deSTLUtil.cpp",
"$deqp_path/framework/delibs/decpp/deStringUtil.cpp",
"$deqp_path/framework/delibs/decpp/deThread.cpp",
"$deqp_path/framework/delibs/decpp/deThreadLocal.cpp",
"$deqp_path/framework/delibs/decpp/deThreadSafeRingBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deUniquePtr.cpp",
deqp_khr_common_sources = [
"$deqp_path/external/openglcts/modules/common/glcAggressiveShaderOptimizationsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcAggressiveShaderOptimizationsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcBlendEquationAdvancedTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcBlendEquationAdvancedTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigList.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigList.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListEGL.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListEGL.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListWGL.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigListWGL.hpp",
"$deqp_path/external/openglcts/modules/common/glcConfigPackage.cpp",
"$deqp_path/external/openglcts/modules/common/glcConfigPackage.hpp",
"$deqp_path/external/openglcts/modules/common/glcContext.cpp",
"$deqp_path/external/openglcts/modules/common/glcContext.hpp",
"$deqp_path/external/openglcts/modules/common/glcContextFlagsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcContextFlagsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcExposedExtensionsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcExposedExtensionsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcExtTokens.cpp",
"$deqp_path/external/openglcts/modules/common/glcExtTokens.hpp",
"$deqp_path/external/openglcts/modules/common/glcFragDepthTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcFragDepthTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcInfoTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcInfoTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcInternalformatTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcInternalformatTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcKHRDebugTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcKHRDebugTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcLayoutLocationTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcLayoutLocationTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcLimitTest.hpp",
"$deqp_path/external/openglcts/modules/common/glcLimitTest.inl",
"$deqp_path/external/openglcts/modules/common/glcMisc.cpp",
"$deqp_path/external/openglcts/modules/common/glcMisc.hpp",
"$deqp_path/external/openglcts/modules/common/glcMultipleContextsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcMultipleContextsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcNoDefaultContextPackage.cpp",
"$deqp_path/external/openglcts/modules/common/glcNoDefaultContextPackage.hpp",
"$deqp_path/external/openglcts/modules/common/glcNoErrorTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcNoErrorTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcPackedDepthStencilTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcPackedDepthStencilTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcPackedPixelsTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcPackedPixelsTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcParallelShaderCompileTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcParallelShaderCompileTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcPolygonOffsetClampTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcPolygonOffsetClampTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcRobustBufferAccessBehaviorTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcRobustBufferAccessBehaviorTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcRobustnessTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcRobustnessTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcSampleVariablesTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcSampleVariablesTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcSeparableProgramsTransformFeedbackTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcSeparableProgramsTransformFeedbackTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderConstExprTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderConstExprTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderGroupVoteTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderGroupVoteTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIndexingTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIndexingTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIntegerMixTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderIntegerMixTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibrary.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibrary.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibraryCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLibraryCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLoopTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderLoopTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMacroTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMacroTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMultisampleInterpolationTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderMultisampleInterpolationTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderNegativeTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderNegativeTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderRenderCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderRenderCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderStructTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderStructTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcShaderSwitchTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcShaderSwitchTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcSpirvUtils.cpp",
"$deqp_path/external/openglcts/modules/common/glcSpirvUtils.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestCaseWrapper.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestCaseWrapper.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestPackage.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestPackage.hpp",
"$deqp_path/external/openglcts/modules/common/glcTestSubcase.cpp",
"$deqp_path/external/openglcts/modules/common/glcTestSubcase.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureFilterAnisotropicTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureFilterAnisotropicTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcTextureRepeatModeTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcTextureRepeatModeTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockCase.cpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockCase.hpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcUniformBlockTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcViewportArrayTests.cpp",
"$deqp_path/external/openglcts/modules/common/glcViewportArrayTests.hpp",
"$deqp_path/external/openglcts/modules/common/glcWaiver.hpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestCaseBase.cpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestCaseBase.hpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestPackage.cpp",
"$deqp_path/external/openglcts/modules/glesext/esextcTestPackage.hpp",
]
deqp_libtester_sources = [
"$deqp_path/execserver/xsDefs.cpp",
"$deqp_path/execserver/xsExecutionServer.cpp",
"$deqp_path/execserver/xsPosixFileReader.cpp",
"$deqp_path/execserver/xsPosixTestProcess.cpp",
"$deqp_path/execserver/xsProtocol.cpp",
"$deqp_path/execserver/xsTcpServer.cpp",
"$deqp_path/execserver/xsTestDriver.cpp",
"$deqp_path/execserver/xsTestProcess.cpp",
"$deqp_path/executor/xeBatchExecutor.cpp",
"$deqp_path/executor/xeBatchResult.cpp",
"$deqp_path/executor/xeCallQueue.cpp",
"$deqp_path/executor/xeCommLink.cpp",
"$deqp_path/executor/xeContainerFormatParser.cpp",
"$deqp_path/executor/xeDefs.cpp",
"$deqp_path/executor/xeLocalTcpIpLink.cpp",
"$deqp_path/executor/xeTcpIpLink.cpp",
"$deqp_path/executor/xeTestCase.cpp",
"$deqp_path/executor/xeTestCaseListParser.cpp",
"$deqp_path/executor/xeTestCaseResult.cpp",
"$deqp_path/executor/xeTestLogParser.cpp",
"$deqp_path/executor/xeTestLogWriter.cpp",
"$deqp_path/executor/xeTestResultParser.cpp",
"$deqp_path/executor/xeXMLParser.cpp",
"$deqp_path/executor/xeXMLWriter.cpp",
"$deqp_path/framework/common/tcuApp.cpp",
"$deqp_path/framework/common/tcuAstcUtil.cpp",
"$deqp_path/framework/common/tcuBilinearImageCompare.cpp",
"$deqp_path/framework/common/tcuCommandLine.cpp",
"$deqp_path/framework/common/tcuCompressedTexture.cpp",
"$deqp_path/framework/common/tcuCPUWarmup.cpp",
"$deqp_path/framework/common/tcuDefs.cpp",
"$deqp_path/framework/common/tcuEither.cpp",
"$deqp_path/framework/common/tcuFactoryRegistry.cpp",
"$deqp_path/framework/common/tcuFloatFormat.cpp",
"$deqp_path/framework/common/tcuFunctionLibrary.cpp",
"$deqp_path/framework/common/tcuFuzzyImageCompare.cpp",
"$deqp_path/framework/common/tcuImageCompare.cpp",
"$deqp_path/framework/common/tcuImageIO.cpp",
"$deqp_path/framework/common/tcuInterval.cpp",
"$deqp_path/framework/common/tcuPlatform.cpp",
"$deqp_path/framework/common/tcuRandomValueIterator.cpp",
"$deqp_path/framework/common/tcuRasterizationVerifier.cpp",
"$deqp_path/framework/common/tcuRasterizationVerifier.hpp",
"$deqp_path/framework/common/tcuRenderTarget.cpp",
"$deqp_path/framework/common/tcuResource.cpp",
"$deqp_path/framework/common/tcuResultCollector.cpp",
"$deqp_path/framework/common/tcuRGBA.cpp",
"$deqp_path/framework/common/tcuStringTemplate.cpp",
"$deqp_path/framework/common/tcuSurface.cpp",
"$deqp_path/framework/common/tcuSurfaceAccess.cpp",
"$deqp_path/framework/common/tcuSurfaceAccess.hpp",
"$deqp_path/framework/common/tcuTestCase.cpp",
"$deqp_path/framework/common/tcuTestContext.cpp",
"$deqp_path/framework/common/tcuTestHierarchyIterator.cpp",
"$deqp_path/framework/common/tcuTestHierarchyUtil.cpp",
"$deqp_path/framework/common/tcuTestLog.cpp",
"$deqp_path/framework/common/tcuTestPackage.cpp",
"$deqp_path/framework/common/tcuTestSessionExecutor.cpp",
"$deqp_path/framework/common/tcuTexCompareVerifier.cpp",
"$deqp_path/framework/common/tcuTexLookupVerifier.cpp",
"$deqp_path/framework/common/tcuTexture.cpp",
"$deqp_path/framework/common/tcuTextureUtil.cpp",
"$deqp_path/framework/common/tcuTexVerifierUtil.cpp",
"$deqp_path/framework/common/tcuThreadUtil.cpp",
"$deqp_path/framework/common/tcuSeedBuilder.cpp",
deqp_khr_test_module_headers = [
"$deqp_path/external/openglcts/modules/gles31/es31cDrawIndirectTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderSubroutineTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/tes31TestCase.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cArrayOfArraysTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cExplicitUniformLocationTest.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTestPackages.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cLayoutBindingTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSampleShadingTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSeparateShaderObjsTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderBitfieldOperationTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_elements_base_vertex/esextcDrawElementsBaseVertexTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5Tests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedTests.hpp",
"$deqp_path/modules/gles2/tes2Context.hpp",
"$deqp_path/modules/gles2/tes2TestPackage.hpp",
"$deqp_path/modules/gles3/tes3Context.hpp",
"$deqp_path/modules/gles3/tes3TestPackage.hpp",
"$deqp_path/modules/gles31/tes31Context.hpp",
"$deqp_path/modules/gles31/tes31TestPackage.hpp",
]
deqp_khr_gl_sources = [
"$deqp_path/external/openglcts/modules/gl/gl3cClipDistance.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cClipDistance.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cCommonBugsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cCommonBugsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cCullDistanceTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cCullDistanceTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGLSLnoperspectiveTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGLSLnoperspectiveTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGPUShader5Tests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cGPUShader5Tests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTestPackages.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSizePromotion.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSizePromotion.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSwizzleTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTextureSwizzleTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackOverflowQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackOverflowQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl3cTransformFeedbackTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cBufferStorageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cBufferStorageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cClipControlTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cClipControlTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cComputeShaderTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cComputeShaderTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cConditionalRenderInvertedTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cConditionalRenderInvertedTests.hpp",
# These tests are also disabled in the dEQP CMake build.
# "$deqp_path/external/openglcts/modules/gl/gl4cContextFlushControlTests.cpp",
# "$deqp_path/external/openglcts/modules/gl/gl4cContextFlushControlTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cCopyImageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cCopyImageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessBuffersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessFramebuffersAndRenderbuffersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessProgramPipelinesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessQueriesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessSamplersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessTexturesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessVertexArraysTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cDirectStateAccessXFBTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cEnhancedLayoutsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cES31CompatibilitySampleVariablesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cES31CompatibilityShaderImageLoadStoreTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cES31CompatibilityShaderStorageBufferObjectTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cES31CompatibilityTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cES31CompatibilityTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGetTextureSubImageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGetTextureSubImageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGlSpirvTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGlSpirvTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGPUShaderFP64Tests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cGPUShaderFP64Tests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIncompleteTextureAccessTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIncompleteTextureAccessTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIndirectParametersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cIndirectParametersTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cLimitsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cLimitsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMapBufferAlignmentTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMapBufferAlignmentTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMultiBindTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cMultiBindTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPipelineStatisticsQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPipelineStatisticsQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPostDepthCoverageTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cPostDepthCoverageTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cProgramInterfaceQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cProgramInterfaceQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCounterOpsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCounterOpsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCountersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderAtomicCountersTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderBallotTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderBallotTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderDrawParametersTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderDrawParametersTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageLoadStoreTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageLoadStoreTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageSizeTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderImageSizeTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderStorageBufferObjectTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderStorageBufferObjectTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderSubroutineTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderTextureImageSamplesTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderTextureImageSamplesTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderViewportLayerArrayTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShaderViewportLayerArrayTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShadingLanguage420PackTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cShadingLanguage420PackTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseBufferTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseBufferTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTexture2Tests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTexture2Tests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureClampTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureClampTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSparseTextureTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSpirvExtensionsTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSpirvExtensionsTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cStencilTexturingTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cStencilTexturingTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSyncTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cSyncTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTestPackages.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTestPackages.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureBarrierTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureBarrierTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureFilterMinmaxTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureFilterMinmaxTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureGatherTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureGatherTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureViewTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cTextureViewTests.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttrib64BitTest.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttrib64BitTest.hpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttribBindingTests.cpp",
"$deqp_path/external/openglcts/modules/gl/gl4cVertexAttribBindingTests.hpp",
]
deqp_khr_gles2_sources = [
"$deqp_path/external/openglcts/modules/gles2/es2cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles2/es2cTestPackage.hpp",
"$deqp_path/external/openglcts/modules/gles2/es2cTexture3DTests.cpp",
"$deqp_path/external/openglcts/modules/gles2/es2cTexture3DTests.hpp",
"$deqp_path/external/openglcts/modules/gles2/tes2TestCase.hpp",
]
deqp_khr_gles3_sources = [
"$deqp_path/external/openglcts/modules/gles3/es3cCopyTexImageConversionsTests.cpp",
"$deqp_path/external/openglcts/modules/gles3/es3cCopyTexImageConversionsTests.hpp",
"$deqp_path/external/openglcts/modules/gles3/es3cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles3/es3cTestPackage.hpp",
"$deqp_path/external/openglcts/modules/gles3/tes3TestCase.hpp",
]
deqp_khr_gles31_sources = [
"$deqp_path/external/openglcts/modules/gles31/es31cArrayOfArraysTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cComputeShaderTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cComputeShaderTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cDrawIndirectTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cExplicitUniformLocationTest.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cFramebufferNoAttachmentsTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cFramebufferNoAttachmentsTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cLayoutBindingTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cProgramInterfaceQueryTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cProgramInterfaceQueryTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSampleShadingTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cSeparateShaderObjsTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderAtomicCountersTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderAtomicCountersTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderBitfieldOperationTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderImageLoadStoreTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderImageLoadStoreTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderImageSizeTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderImageSizeTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderStorageBufferObjectTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cShaderStorageBufferObjectTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTestPackage.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureGatherTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureGatherTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleDependenciesTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleDependenciesTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleFunctionalTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleFunctionalTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetActiveUniformTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetActiveUniformTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetMultisamplefvTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetMultisamplefvTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetTexLevelParameterifvTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGetTexLevelParameterifvTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGLCoverageTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleGLCoverageTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleSampleMaskiTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleSampleMaskiTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage2DMultisampleTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage2DMultisampleTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage3DMultisampleTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cTextureStorageMultisampleTexStorage3DMultisampleTests.hpp",
"$deqp_path/external/openglcts/modules/gles31/es31cVertexAttribBindingTests.cpp",
"$deqp_path/external/openglcts/modules/gles31/es31cVertexAttribBindingTests.hpp",
]
deqp_khr_gles32_sources = [
"$deqp_path/external/openglcts/modules/gles32/es32cCopyImageTests.cpp",
"$deqp_path/external/openglcts/modules/gles32/es32cCopyImageTests.hpp",
"$deqp_path/external/openglcts/modules/gles32/es32cTestPackage.cpp",
"$deqp_path/external/openglcts/modules/gles32/es32cTestPackage.hpp",
]
deqp_khr_glesext_sources = [
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBase.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBase.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBlending.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedBlending.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedColorMasks.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedColorMasks.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedCoverage.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedCoverage.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedDefaultState.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedDefaultState.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedNegative.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedNegative.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedSetGet.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedSetGet.hpp",
"$deqp_path/external/openglcts/modules/glesext/draw_buffers_indexed/esextcDrawBuffersIndexedTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/draw_elements_base_vertex/esextcDrawElementsBaseVertexTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacency.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacency.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacencyTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAdjacencyTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAPI.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderAPI.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderBlitting.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderBlitting.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderClipping.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderClipping.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderConstantVariables.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderConstantVariables.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderInput.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderInput.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFBO.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFBO.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFramebuffer.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredFramebuffer.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRendering.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRendering.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingBoundaryCondition.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingBoundaryCondition.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingFBONoAttachment.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLayeredRenderingFBONoAttachment.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLimits.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLimits.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLinking.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderLinking.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderNonarrayInput.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderNonarrayInput.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderOutput.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderOutput.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveCounter.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveCounter.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveQueries.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderPrimitiveQueries.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderProgramResource.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderProgramResource.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderQualifiers.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderQualifiers.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderRendering.cpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderRendering.hpp",
"$deqp_path/external/openglcts/modules/glesext/geometry_shader/esextcGeometryShaderTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5AtomicCountersArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5AtomicCountersArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaAccuracy.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaAccuracy.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaPrecision.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5FmaPrecision.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5ImagesArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5ImagesArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5PreciseQualifier.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5PreciseQualifier.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SamplerArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SamplerArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SSBOArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5SSBOArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5Tests.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5TextureGatherOffset.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5TextureGatherOffset.hpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5UniformBlocksArrayIndexing.cpp",
"$deqp_path/external/openglcts/modules/glesext/gpu_shader5/esextcGPUShader5UniformBlocksArrayIndexing.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderBarrier.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderBarrier.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderInvariance.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderInvariance.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderIsolines.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderIsolines.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderMaxPatchVertices.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderMaxPatchVertices.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPoints.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPoints.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPrimitiveCoverage.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderPrimitiveCoverage.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProgramInterfaces.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProgramInterfaces.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProperties.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderProperties.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderQuads.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderQuads.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTCTE.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTCTE.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTessellation.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTessellation.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTriangles.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderTriangles.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderUtils.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderUtils.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexOrdering.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexOrdering.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexSpacing.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderVertexSpacing.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderWinding.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderWinding.hpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderXFB.cpp",
"$deqp_path/external/openglcts/modules/glesext/tessellation_shader/esextcTessellationShaderXFB.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampBase.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampBase.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampCompressedResources.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampGetTexParameterIErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampGetTexParameterIErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterBorderColorError.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterBorderColorError.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterTextureBorderColor.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampParameterTextureBorderColor.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIError.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIError.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIWithWrongPname.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplerParameterIWithWrongPname.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTexture.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTexture.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTextureGroup.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampSamplingTextureGroup.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTexParameterIErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_border_clamp/esextcTextureBorderClampTexParameterIErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferActiveUniformValidation.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferActiveUniformValidation.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferAtomicFunctions.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferAtomicFunctions.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferBufferParameters.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferBufferParameters.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferErrors.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferErrors.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferMAXSizeValidation.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferMAXSizeValidation.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferOperations.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferOperations.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParameters.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParameters.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParamValueIntToFloatConversion.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferParamValueIntToFloatConversion.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferPrecision.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferPrecision.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTextureBufferRange.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_buffer/esextcTextureBufferTextureBufferRange.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayColorDepthAttachments.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayColorDepthAttachments.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayETC2Support.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayETC2Support.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayFBOIncompleteness.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayFBOIncompleteness.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGenerateMipMap.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGenerateMipMap.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGetterCalls.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayGetterCalls.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageOperations.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageOperations.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSize.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSize.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSizeTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayImageTextureSizeTests.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySampling.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySampling.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySamplingResources.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayStencilAttachments.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayStencilAttachments.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySubImage3D.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArraySubImage3D.hpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTests.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTex3DValidation.cpp",
"$deqp_path/external/openglcts/modules/glesext/texture_cube_map_array/esextcTextureCubeMapArrayTex3DValidation.hpp",
]
deqp_framework_debase_sources = [
"$deqp_path/framework/delibs/debase/deDefs.c",
"$deqp_path/framework/delibs/debase/deDefs.h",
"$deqp_path/framework/delibs/debase/deFloat16.c",
"$deqp_path/framework/delibs/debase/deFloat16.h",
"$deqp_path/framework/delibs/debase/deInt32.c",
"$deqp_path/framework/delibs/debase/deInt32.h",
"$deqp_path/framework/delibs/debase/deInt32Test.c",
"$deqp_path/framework/delibs/debase/deMath.c",
"$deqp_path/framework/delibs/debase/deMath.h",
"$deqp_path/framework/delibs/debase/deMemory.c",
"$deqp_path/framework/delibs/debase/deMemory.h",
"$deqp_path/framework/delibs/debase/deRandom.c",
"$deqp_path/framework/delibs/debase/deString.c",
"$deqp_path/framework/delibs/debase/deRandom.h",
"$deqp_path/framework/delibs/debase/deSha1.c",
"$deqp_path/framework/delibs/debase/deSha1.h",
"$deqp_path/framework/delibs/debase/deString.c",
"$deqp_path/framework/delibs/debase/deString.h",
]
deqp_framework_delibs_sources = [
"$deqp_path/framework/delibs/deimage/deImage.c",
"$deqp_path/framework/delibs/deimage/deTarga.c",
"$deqp_path/framework/delibs/depool/deMemPool.c",
"$deqp_path/framework/delibs/depool/dePoolArray.c",
"$deqp_path/framework/delibs/depool/dePoolHashArray.c",
"$deqp_path/framework/delibs/depool/dePoolHash.c",
"$deqp_path/framework/delibs/depool/dePoolHashArray.c",
"$deqp_path/framework/delibs/depool/dePoolHashSet.c",
"$deqp_path/framework/delibs/depool/dePoolHeap.c",
"$deqp_path/framework/delibs/depool/dePoolMultiSet.c",
......@@ -978,6 +1402,7 @@ deqp_libtester_sources = [
"$deqp_path/framework/delibs/destream/deThreadStream.c",
"$deqp_path/framework/delibs/dethread/deAtomic.c",
"$deqp_path/framework/delibs/dethread/deSingleton.c",
"$deqp_path/framework/delibs/dethread/deThreadLocal.h",
"$deqp_path/framework/delibs/dethread/deThreadTest.c",
"$deqp_path/framework/delibs/deutil/deClock.c",
"$deqp_path/framework/delibs/deutil/deCommandLine.c",
......@@ -987,136 +1412,569 @@ deqp_libtester_sources = [
"$deqp_path/framework/delibs/deutil/deSocket.c",
"$deqp_path/framework/delibs/deutil/deTimer.c",
"$deqp_path/framework/delibs/deutil/deTimerTest.c",
"$deqp_path/framework/egl/egluCallLogWrapper.cpp",
"$deqp_path/framework/egl/egluConfigFilter.cpp",
"$deqp_path/framework/egl/egluConfigInfo.cpp",
"$deqp_path/framework/egl/egluDefs.cpp",
"$deqp_path/framework/egl/egluGLContextFactory.cpp",
"$deqp_path/framework/egl/egluGLFunctionLoader.cpp",
"$deqp_path/framework/egl/egluGLUtil.cpp",
"$deqp_path/framework/egl/egluNativeDisplay.cpp",
"$deqp_path/framework/egl/egluNativePixmap.cpp",
"$deqp_path/framework/egl/egluNativeWindow.cpp",
"$deqp_path/framework/egl/egluPlatform.cpp",
"$deqp_path/framework/egl/egluStaticESLibrary.cpp",
"$deqp_path/framework/egl/egluStrUtil.cpp",
"$deqp_path/framework/egl/egluUnique.cpp",
"$deqp_path/framework/egl/egluUtil.cpp",
"$deqp_path/framework/egl/wrapper/eglwDefs.cpp",
"$deqp_path/framework/egl/wrapper/eglwFunctions.cpp",
"$deqp_path/framework/egl/wrapper/eglwLibrary.cpp",
]
deqp_framework_delibs_sources_win = [
"$deqp_path/framework/delibs/dethread/win32/deMutexWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deSemaphoreWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deThreadLocalWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deThreadWin32.c",
]
deqp_framework_delibs_sources_unix = [
"$deqp_path/framework/delibs/dethread/unix/deMutexUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deNamedSemaphoreUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deSemaphoreUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deThreadLocalUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deThreadUnix.c",
]
deqp_framework_decpp_sources = [
"$deqp_path/framework/delibs/decpp/deAppendList.cpp",
"$deqp_path/framework/delibs/decpp/deAppendList.hpp",
"$deqp_path/framework/delibs/decpp/deArrayBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deArrayBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deArrayUtil.cpp",
"$deqp_path/framework/delibs/decpp/deArrayUtil.hpp",
"$deqp_path/framework/delibs/decpp/deBlockBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deBlockBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deCommandLine.cpp",
"$deqp_path/framework/delibs/decpp/deCommandLine.hpp",
"$deqp_path/framework/delibs/decpp/deDefs.cpp",
"$deqp_path/framework/delibs/decpp/deDefs.hpp",
"$deqp_path/framework/delibs/decpp/deDirectoryIterator.cpp",
"$deqp_path/framework/delibs/decpp/deDirectoryIterator.hpp",
"$deqp_path/framework/delibs/decpp/deDynamicLibrary.cpp",
"$deqp_path/framework/delibs/decpp/deDynamicLibrary.hpp",
"$deqp_path/framework/delibs/decpp/deFilePath.cpp",
"$deqp_path/framework/delibs/decpp/deFilePath.hpp",
"$deqp_path/framework/delibs/decpp/deMemPool.cpp",
"$deqp_path/framework/delibs/decpp/deMemPool.hpp",
"$deqp_path/framework/delibs/decpp/deMeta.cpp",
"$deqp_path/framework/delibs/decpp/deMeta.hpp",
"$deqp_path/framework/delibs/decpp/deMutex.cpp",
"$deqp_path/framework/delibs/decpp/deMutex.hpp",
"$deqp_path/framework/delibs/decpp/dePoolArray.cpp",
"$deqp_path/framework/delibs/decpp/dePoolArray.hpp",
"$deqp_path/framework/delibs/decpp/dePoolString.cpp",
"$deqp_path/framework/delibs/decpp/dePoolString.hpp",
"$deqp_path/framework/delibs/decpp/deProcess.cpp",
"$deqp_path/framework/delibs/decpp/deProcess.hpp",
"$deqp_path/framework/delibs/decpp/deRandom.cpp",
"$deqp_path/framework/delibs/decpp/deRandom.hpp",
"$deqp_path/framework/delibs/decpp/deRingBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deRingBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deSemaphore.cpp",
"$deqp_path/framework/delibs/decpp/deSemaphore.hpp",
"$deqp_path/framework/delibs/decpp/deSha1.cpp",
"$deqp_path/framework/delibs/decpp/deSha1.hpp",
"$deqp_path/framework/delibs/decpp/deSharedPtr.cpp",
"$deqp_path/framework/delibs/decpp/deSharedPtr.hpp",
"$deqp_path/framework/delibs/decpp/deSocket.cpp",
"$deqp_path/framework/delibs/decpp/deSocket.hpp",
"$deqp_path/framework/delibs/decpp/deSpinBarrier.cpp",
"$deqp_path/framework/delibs/decpp/deSpinBarrier.hpp",
"$deqp_path/framework/delibs/decpp/deSTLUtil.cpp",
"$deqp_path/framework/delibs/decpp/deSTLUtil.hpp",
"$deqp_path/framework/delibs/decpp/deStringUtil.cpp",
"$deqp_path/framework/delibs/decpp/deStringUtil.hpp",
"$deqp_path/framework/delibs/decpp/deThread.cpp",
"$deqp_path/framework/delibs/decpp/deThread.hpp",
"$deqp_path/framework/delibs/decpp/deThreadLocal.cpp",
"$deqp_path/framework/delibs/decpp/deThreadLocal.hpp",
"$deqp_path/framework/delibs/decpp/deThreadSafeRingBuffer.cpp",
"$deqp_path/framework/delibs/decpp/deThreadSafeRingBuffer.hpp",
"$deqp_path/framework/delibs/decpp/deUniquePtr.cpp",
"$deqp_path/framework/delibs/decpp/deUniquePtr.hpp",
]
deqp_framework_opengl_sources = [
"$deqp_path/framework/opengl/gluCallLogUtil.inl",
"$deqp_path/framework/opengl/gluCallLogWrapper.cpp",
"$deqp_path/framework/opengl/gluCallLogWrapper.hpp",
"$deqp_path/framework/opengl/gluCallLogWrapper.inl",
"$deqp_path/framework/opengl/gluCallLogWrapperApi.inl",
"$deqp_path/framework/opengl/gluContextFactory.cpp",
"$deqp_path/framework/opengl/gluContextFactory.hpp",
"$deqp_path/framework/opengl/gluContextInfo.cpp",
"$deqp_path/framework/opengl/gluContextInfo.hpp",
"$deqp_path/framework/opengl/gluDefs.cpp",
"$deqp_path/framework/opengl/gluDefs.hpp",
"$deqp_path/framework/opengl/gluDrawUtil.cpp",
"$deqp_path/framework/opengl/gluDrawUtil.hpp",
"$deqp_path/framework/opengl/gluDummyRenderContext.cpp",
"$deqp_path/framework/opengl/gluDummyRenderContext.hpp",
"$deqp_path/framework/opengl/gluES3PlusWrapperFuncs.inl",
"$deqp_path/framework/opengl/gluFboRenderContext.cpp",
"$deqp_path/framework/opengl/gluFboRenderContext.hpp",
"$deqp_path/framework/opengl/gluObjectWrapper.cpp",
"$deqp_path/framework/opengl/gluObjectWrapper.hpp",
"$deqp_path/framework/opengl/gluPixelTransfer.cpp",
"$deqp_path/framework/opengl/gluPixelTransfer.hpp",
"$deqp_path/framework/opengl/gluPlatform.cpp",
"$deqp_path/framework/opengl/gluPlatform.hpp",
"$deqp_path/framework/opengl/gluProgramInterfaceQuery.cpp",
"$deqp_path/framework/opengl/gluProgramInterfaceQuery.hpp",
"$deqp_path/framework/opengl/gluQueryUtil.inl",
"$deqp_path/framework/opengl/gluRenderConfig.cpp",
"$deqp_path/framework/opengl/gluRenderConfig.hpp",
"$deqp_path/framework/opengl/gluRenderContext.cpp",
"$deqp_path/framework/opengl/gluRenderContext.hpp",
"$deqp_path/framework/opengl/gluShaderLibrary.cpp",
"$deqp_path/framework/opengl/gluShaderLibrary.hpp",
"$deqp_path/framework/opengl/gluShaderProgram.cpp",
"$deqp_path/framework/opengl/gluShaderProgram.hpp",
"$deqp_path/framework/opengl/gluShaderUtil.cpp",
"$deqp_path/framework/opengl/gluShaderUtil.hpp",
"$deqp_path/framework/opengl/gluStateReset.cpp",
"$deqp_path/framework/opengl/gluStateReset.hpp",
"$deqp_path/framework/opengl/gluStrUtil.cpp",
"$deqp_path/framework/opengl/gluStrUtil.hpp",
"$deqp_path/framework/opengl/gluStrUtil.inl",
"$deqp_path/framework/opengl/gluStrUtilPrototypes.inl",
"$deqp_path/framework/opengl/gluTexture.cpp",
"$deqp_path/framework/opengl/gluTextureUtil.cpp",
"$deqp_path/framework/opengl/gluTexture.hpp",
"$deqp_path/framework/opengl/gluTextureTestUtil.cpp",
"$deqp_path/framework/opengl/gluTextureTestUtil.hpp",
"$deqp_path/framework/opengl/gluTextureUtil.cpp",
"$deqp_path/framework/opengl/gluTextureUtil.hpp",
"$deqp_path/framework/opengl/gluVarType.cpp",
"$deqp_path/framework/opengl/gluVarType.hpp",
"$deqp_path/framework/opengl/gluVarTypeUtil.cpp",
"$deqp_path/framework/opengl/gluVarTypeUtil.hpp",
"$deqp_path/framework/opengl/simplereference/sglrContext.cpp",
"$deqp_path/framework/opengl/simplereference/sglrContext.hpp",
"$deqp_path/framework/opengl/simplereference/sglrContextUtil.cpp",
"$deqp_path/framework/opengl/simplereference/sglrContextUtil.hpp",
"$deqp_path/framework/opengl/simplereference/sglrContextWrapper.cpp",
"$deqp_path/framework/opengl/simplereference/sglrContextWrapper.hpp",
"$deqp_path/framework/opengl/simplereference/sglrGLContext.cpp",
"$deqp_path/framework/opengl/simplereference/sglrGLContext.hpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceContext.cpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceContext.hpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceUtils.cpp",
"$deqp_path/framework/opengl/simplereference/sglrReferenceUtils.hpp",
"$deqp_path/framework/opengl/simplereference/sglrShaderProgram.cpp",
"$deqp_path/framework/opengl/simplereference/sglrShaderProgram.hpp",
"$deqp_path/framework/opengl/wrapper/glw.h",
"$deqp_path/framework/opengl/wrapper/glwApi.inl",
"$deqp_path/framework/opengl/wrapper/glwDefs.cpp",
"$deqp_path/framework/opengl/wrapper/glwDefs.hpp",
"$deqp_path/framework/opengl/wrapper/glwEnums.hpp",
"$deqp_path/framework/opengl/wrapper/glwEnums.inl",
"$deqp_path/framework/opengl/wrapper/glwFunctionLoader.hpp",
"$deqp_path/framework/opengl/wrapper/glwFunctions.cpp",
"$deqp_path/framework/opengl/wrapper/glwFunctions.hpp",
"$deqp_path/framework/opengl/wrapper/glwFunctions.inl",
"$deqp_path/framework/opengl/wrapper/glwFunctionTypes.inl",
"$deqp_path/framework/opengl/wrapper/glwImpl.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES20.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES20Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES20Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES20Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES30.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES30Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES30Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES30Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES31.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES31Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES31Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES31Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES32.inl",
"$deqp_path/framework/opengl/wrapper/glwInitES32Direct.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitES32Direct.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitES32Direct.inl",
"$deqp_path/framework/opengl/wrapper/glwInitExtES.inl",
"$deqp_path/framework/opengl/wrapper/glwInitExtGL.inl",
"$deqp_path/framework/opengl/wrapper/glwInitFunctions.cpp",
"$deqp_path/framework/opengl/wrapper/glwInitFunctions.hpp",
"$deqp_path/framework/opengl/wrapper/glwInitGL30.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL31.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL32.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL33.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL40.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL41.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL42.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL43.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL44.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL45.inl",
"$deqp_path/framework/opengl/wrapper/glwInitGL46.inl",
"$deqp_path/framework/opengl/wrapper/glwTypes.inl",
"$deqp_path/framework/opengl/wrapper/glwVersions.inl",
"$deqp_path/framework/opengl/wrapper/glwWrapper.cpp",
"$deqp_path/framework/platform/null/tcuNullContextFactory.cpp",
"$deqp_path/framework/platform/null/tcuNullContextFactory.hpp",
"$deqp_path/framework/platform/null/tcuNullRenderContext.cpp",
"$deqp_path/framework/qphelper/qpCrashHandler.c",
"$deqp_path/framework/qphelper/qpDebugOut.c",
"$deqp_path/framework/qphelper/qpInfo.c",
"$deqp_path/framework/qphelper/qpTestLog.c",
"$deqp_path/framework/qphelper/qpWatchDog.c",
"$deqp_path/framework/qphelper/qpXmlWriter.c",
"$deqp_path/framework/opengl/wrapper/glwWrapper.hpp",
]
deqp_framework_egl_sources = [
"$deqp_path/framework/egl/egluCallLogWrapper.cpp",
"$deqp_path/framework/egl/egluCallLogWrapper.hpp",
"$deqp_path/framework/egl/egluCallLogWrapper.inl",
"$deqp_path/framework/egl/egluCallLogWrapperApi.inl",
"$deqp_path/framework/egl/egluConfigFilter.cpp",
"$deqp_path/framework/egl/egluConfigFilter.hpp",
"$deqp_path/framework/egl/egluConfigInfo.cpp",
"$deqp_path/framework/egl/egluConfigInfo.hpp",
"$deqp_path/framework/egl/egluDefs.cpp",
"$deqp_path/framework/egl/egluDefs.hpp",
"$deqp_path/framework/egl/egluGLContextFactory.cpp",
"$deqp_path/framework/egl/egluGLContextFactory.hpp",
"$deqp_path/framework/egl/egluGLFunctionLoader.cpp",
"$deqp_path/framework/egl/egluGLFunctionLoader.hpp",
"$deqp_path/framework/egl/egluGLUtil.cpp",
"$deqp_path/framework/egl/egluGLUtil.hpp",
"$deqp_path/framework/egl/egluNativeDisplay.cpp",
"$deqp_path/framework/egl/egluNativeDisplay.hpp",
"$deqp_path/framework/egl/egluNativePixmap.cpp",
"$deqp_path/framework/egl/egluNativePixmap.hpp",
"$deqp_path/framework/egl/egluNativeWindow.cpp",
"$deqp_path/framework/egl/egluNativeWindow.hpp",
"$deqp_path/framework/egl/egluPlatform.cpp",
"$deqp_path/framework/egl/egluPlatform.hpp",
"$deqp_path/framework/egl/egluStaticES20Library.inl",
"$deqp_path/framework/egl/egluStaticES30Library.inl",
"$deqp_path/framework/egl/egluStaticES31Library.inl",
"$deqp_path/framework/egl/egluStaticES32Library.inl",
"$deqp_path/framework/egl/egluStaticESLibrary.cpp",
"$deqp_path/framework/egl/egluStaticESLibrary.hpp",
"$deqp_path/framework/egl/egluStrUtil.cpp",
"$deqp_path/framework/egl/egluStrUtil.hpp",
"$deqp_path/framework/egl/egluStrUtil.inl",
"$deqp_path/framework/egl/egluStrUtilPrototypes.inl",
"$deqp_path/framework/egl/egluUnique.cpp",
"$deqp_path/framework/egl/egluUnique.hpp",
"$deqp_path/framework/egl/egluUtil.cpp",
"$deqp_path/framework/egl/egluUtil.hpp",
"$deqp_path/framework/egl/wrapper/eglw.h",
"$deqp_path/framework/egl/wrapper/eglwApi.inl",
"$deqp_path/framework/egl/wrapper/eglwDefs.cpp",
"$deqp_path/framework/egl/wrapper/eglwDefs.hpp",
"$deqp_path/framework/egl/wrapper/eglwEnums.hpp",
"$deqp_path/framework/egl/wrapper/eglwEnums.inl",
"$deqp_path/framework/egl/wrapper/eglwEnumsC.inl",
"$deqp_path/framework/egl/wrapper/eglwFuncPtrLibraryDecl.inl",
"$deqp_path/framework/egl/wrapper/eglwFuncPtrLibraryImpl.inl",
"$deqp_path/framework/egl/wrapper/eglwFunctions.cpp",
"$deqp_path/framework/egl/wrapper/eglwFunctions.hpp",
"$deqp_path/framework/egl/wrapper/eglwFunctions.inl",
"$deqp_path/framework/egl/wrapper/eglwFunctionTypes.inl",
"$deqp_path/framework/egl/wrapper/eglwImpl.inl",
"$deqp_path/framework/egl/wrapper/eglwImplExt.inl",
"$deqp_path/framework/egl/wrapper/eglwInitCore.inl",
"$deqp_path/framework/egl/wrapper/eglwInitExtensions.inl",
"$deqp_path/framework/egl/wrapper/eglwLibrary.cpp",
"$deqp_path/framework/egl/wrapper/eglwLibrary.hpp",
"$deqp_path/framework/egl/wrapper/eglwLibrary.inl",
"$deqp_path/framework/egl/wrapper/eglwStaticLibrary14.inl",
"$deqp_path/framework/egl/wrapper/eglwStaticLibrary15.inl",
"$deqp_path/framework/egl/wrapper/eglwTypes.inl",
"$deqp_path/framework/egl/wrapper/eglwWrapper.cpp",
"$deqp_path/framework/egl/wrapper/eglwWrapper.hpp",
]
deqp_framework_common_sources = [
"$deqp_path/framework/common/tcuApp.cpp",
"$deqp_path/framework/common/tcuApp.hpp",
"$deqp_path/framework/common/tcuArray.cpp",
"$deqp_path/framework/common/tcuArray.hpp",
"$deqp_path/framework/common/tcuAstcUtil.cpp",
"$deqp_path/framework/common/tcuAstcUtil.hpp",
"$deqp_path/framework/common/tcuBilinearImageCompare.cpp",
"$deqp_path/framework/common/tcuBilinearImageCompare.hpp",
"$deqp_path/framework/common/tcuCommandLine.cpp",
"$deqp_path/framework/common/tcuCommandLine.hpp",
"$deqp_path/framework/common/tcuCompressedTexture.cpp",
"$deqp_path/framework/common/tcuCompressedTexture.hpp",
"$deqp_path/framework/common/tcuCPUWarmup.cpp",
"$deqp_path/framework/common/tcuCPUWarmup.hpp",
"$deqp_path/framework/common/tcuDefs.cpp",
"$deqp_path/framework/common/tcuDefs.hpp",
"$deqp_path/framework/common/tcuEither.cpp",
"$deqp_path/framework/common/tcuEither.hpp",
"$deqp_path/framework/common/tcuFactoryRegistry.cpp",
"$deqp_path/framework/common/tcuFactoryRegistry.hpp",
"$deqp_path/framework/common/tcuFloat.cpp",
"$deqp_path/framework/common/tcuFloat.hpp",
"$deqp_path/framework/common/tcuFloatFormat.cpp",
"$deqp_path/framework/common/tcuFloatFormat.hpp",
"$deqp_path/framework/common/tcuFormatUtil.hpp",
"$deqp_path/framework/common/tcuFunctionLibrary.cpp",
"$deqp_path/framework/common/tcuFunctionLibrary.hpp",
"$deqp_path/framework/common/tcuFuzzyImageCompare.cpp",
"$deqp_path/framework/common/tcuFuzzyImageCompare.hpp",
"$deqp_path/framework/common/tcuImageCompare.cpp",
"$deqp_path/framework/common/tcuImageCompare.hpp",
"$deqp_path/framework/common/tcuImageIO.cpp",
"$deqp_path/framework/common/tcuImageIO.hpp",
"$deqp_path/framework/common/tcuInterval.cpp",
"$deqp_path/framework/common/tcuInterval.hpp",
"$deqp_path/framework/common/tcuMatrix.cpp",
"$deqp_path/framework/common/tcuMatrix.hpp",
"$deqp_path/framework/common/tcuMatrixUtil.hpp",
"$deqp_path/framework/common/tcuMaybe.cpp",
"$deqp_path/framework/common/tcuMaybe.hpp",
"$deqp_path/framework/common/tcuPixelFormat.hpp",
"$deqp_path/framework/common/tcuPlatform.cpp",
"$deqp_path/framework/common/tcuPlatform.hpp",
"$deqp_path/framework/common/tcuRandomValueIterator.cpp",
"$deqp_path/framework/common/tcuRandomValueIterator.hpp",
"$deqp_path/framework/common/tcuRasterizationVerifier.cpp",
"$deqp_path/framework/common/tcuRasterizationVerifier.hpp",
"$deqp_path/framework/common/tcuRenderTarget.cpp",
"$deqp_path/framework/common/tcuRenderTarget.hpp",
"$deqp_path/framework/common/tcuResource.cpp",
"$deqp_path/framework/common/tcuResource.hpp",
"$deqp_path/framework/common/tcuResultCollector.cpp",
"$deqp_path/framework/common/tcuResultCollector.hpp",
"$deqp_path/framework/common/tcuRGBA.cpp",
"$deqp_path/framework/common/tcuRGBA.hpp",
"$deqp_path/framework/common/tcuSeedBuilder.cpp",
"$deqp_path/framework/common/tcuSeedBuilder.hpp",
"$deqp_path/framework/common/tcuSRGB8Lut.inl",
"$deqp_path/framework/common/tcuStringTemplate.cpp",
"$deqp_path/framework/common/tcuStringTemplate.hpp",
"$deqp_path/framework/common/tcuSurface.cpp",
"$deqp_path/framework/common/tcuSurface.hpp",
"$deqp_path/framework/common/tcuSurfaceAccess.cpp",
"$deqp_path/framework/common/tcuSurfaceAccess.hpp",
"$deqp_path/framework/common/tcuTestCase.cpp",
"$deqp_path/framework/common/tcuTestCase.hpp",
"$deqp_path/framework/common/tcuTestContext.cpp",
"$deqp_path/framework/common/tcuTestContext.hpp",
"$deqp_path/framework/common/tcuTestHierarchyIterator.cpp",
"$deqp_path/framework/common/tcuTestHierarchyIterator.hpp",
"$deqp_path/framework/common/tcuTestHierarchyUtil.cpp",
"$deqp_path/framework/common/tcuTestHierarchyUtil.hpp",
"$deqp_path/framework/common/tcuTestLog.cpp",
"$deqp_path/framework/common/tcuTestLog.hpp",
"$deqp_path/framework/common/tcuTestPackage.cpp",
"$deqp_path/framework/common/tcuTestPackage.hpp",
"$deqp_path/framework/common/tcuTestSessionExecutor.cpp",
"$deqp_path/framework/common/tcuTestSessionExecutor.hpp",
"$deqp_path/framework/common/tcuTexCompareVerifier.cpp",
"$deqp_path/framework/common/tcuTexCompareVerifier.hpp",
"$deqp_path/framework/common/tcuTexLookupVerifier.cpp",
"$deqp_path/framework/common/tcuTexLookupVerifier.hpp",
"$deqp_path/framework/common/tcuTexture.cpp",
"$deqp_path/framework/common/tcuTexture.hpp",
"$deqp_path/framework/common/tcuTextureUtil.cpp",
"$deqp_path/framework/common/tcuTextureUtil.hpp",
"$deqp_path/framework/common/tcuTexVerifierUtil.cpp",
"$deqp_path/framework/common/tcuTexVerifierUtil.hpp",
"$deqp_path/framework/common/tcuThreadUtil.cpp",
"$deqp_path/framework/common/tcuThreadUtil.hpp",
"$deqp_path/framework/common/tcuVector.hpp",
"$deqp_path/framework/common/tcuVectorType.hpp",
"$deqp_path/framework/common/tcuVectorUtil.hpp",
"$deqp_path/framework/randomshaders/rsgBinaryOps.cpp",
"$deqp_path/framework/randomshaders/rsgBinaryOps.hpp",
"$deqp_path/framework/randomshaders/rsgBuiltinFunctions.cpp",
"$deqp_path/framework/randomshaders/rsgBuiltinFunctions.hpp",
"$deqp_path/framework/randomshaders/rsgDefs.cpp",
"$deqp_path/framework/randomshaders/rsgDefs.hpp",
"$deqp_path/framework/randomshaders/rsgExecutionContext.cpp",
"$deqp_path/framework/randomshaders/rsgExecutionContext.hpp",
"$deqp_path/framework/randomshaders/rsgExpression.cpp",
"$deqp_path/framework/randomshaders/rsgExpression.hpp",
"$deqp_path/framework/randomshaders/rsgExpressionGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgExpressionGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgFunctionGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgFunctionGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgGeneratorState.cpp",
"$deqp_path/framework/randomshaders/rsgGeneratorState.hpp",
"$deqp_path/framework/randomshaders/rsgNameAllocator.cpp",
"$deqp_path/framework/randomshaders/rsgNameAllocator.hpp",
"$deqp_path/framework/randomshaders/rsgParameters.cpp",
"$deqp_path/framework/randomshaders/rsgParameters.hpp",
"$deqp_path/framework/randomshaders/rsgPrettyPrinter.cpp",
"$deqp_path/framework/randomshaders/rsgPrettyPrinter.hpp",
"$deqp_path/framework/randomshaders/rsgProgramExecutor.cpp",
"$deqp_path/framework/randomshaders/rsgProgramExecutor.hpp",
"$deqp_path/framework/randomshaders/rsgProgramGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgProgramGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgSamplers.cpp",
"$deqp_path/framework/randomshaders/rsgSamplers.hpp",
"$deqp_path/framework/randomshaders/rsgShader.cpp",
"$deqp_path/framework/randomshaders/rsgShader.hpp",
"$deqp_path/framework/randomshaders/rsgShaderGenerator.cpp",
"$deqp_path/framework/randomshaders/rsgShaderGenerator.hpp",
"$deqp_path/framework/randomshaders/rsgStatement.cpp",
"$deqp_path/framework/randomshaders/rsgStatement.hpp",
"$deqp_path/framework/randomshaders/rsgTest.cpp",
"$deqp_path/framework/randomshaders/rsgToken.cpp",
"$deqp_path/framework/randomshaders/rsgToken.hpp",
"$deqp_path/framework/randomshaders/rsgUtils.cpp",
"$deqp_path/framework/randomshaders/rsgUtils.hpp",
"$deqp_path/framework/randomshaders/rsgVariable.cpp",
"$deqp_path/framework/randomshaders/rsgVariable.hpp",
"$deqp_path/framework/randomshaders/rsgVariableManager.cpp",
"$deqp_path/framework/randomshaders/rsgVariableManager.hpp",
"$deqp_path/framework/randomshaders/rsgVariableType.cpp",
"$deqp_path/framework/randomshaders/rsgVariableType.hpp",
"$deqp_path/framework/randomshaders/rsgVariableValue.cpp",
"$deqp_path/framework/randomshaders/rsgVariableValue.hpp",
"$deqp_path/framework/referencerenderer/rrDefs.cpp",
"$deqp_path/framework/referencerenderer/rrDefs.hpp",
"$deqp_path/framework/referencerenderer/rrFragmentOperations.cpp",
"$deqp_path/framework/referencerenderer/rrFragmentOperations.hpp",
"$deqp_path/framework/referencerenderer/rrFragmentPacket.hpp",
"$deqp_path/framework/referencerenderer/rrGenericVector.hpp",
"$deqp_path/framework/referencerenderer/rrMultisamplePixelBufferAccess.cpp",
"$deqp_path/framework/referencerenderer/rrMultisamplePixelBufferAccess.hpp",
"$deqp_path/framework/referencerenderer/rrPrimitiveAssembler.hpp",
"$deqp_path/framework/referencerenderer/rrPrimitivePacket.cpp",
"$deqp_path/framework/referencerenderer/rrPrimitivePacket.hpp",
"$deqp_path/framework/referencerenderer/rrPrimitiveTypes.hpp",
"$deqp_path/framework/referencerenderer/rrRasterizer.cpp",
"$deqp_path/framework/referencerenderer/rrRasterizer.hpp",
"$deqp_path/framework/referencerenderer/rrRenderer.cpp",
"$deqp_path/framework/referencerenderer/rrRenderer.hpp",
"$deqp_path/framework/referencerenderer/rrRenderState.hpp",
"$deqp_path/framework/referencerenderer/rrShaders.cpp",
"$deqp_path/framework/referencerenderer/rrShaders.hpp",
"$deqp_path/framework/referencerenderer/rrShadingContext.cpp",
"$deqp_path/framework/referencerenderer/rrShadingContext.hpp",
"$deqp_path/framework/referencerenderer/rrVertexAttrib.cpp",
"$deqp_path/framework/referencerenderer/rrVertexAttrib.hpp",
"$deqp_path/framework/referencerenderer/rrVertexPacket.cpp",
"$deqp_path/framework/referencerenderer/rrVertexPacket.hpp",
]
deqp_framework_qphelper_sources = [
"$deqp_path/framework/qphelper/qpCrashHandler.c",
"$deqp_path/framework/qphelper/qpCrashHandler.h",
"$deqp_path/framework/qphelper/qpDebugOut.c",
"$deqp_path/framework/qphelper/qpDebugOut.h",
"$deqp_path/framework/qphelper/qpInfo.c",
"$deqp_path/framework/qphelper/qpInfo.h",
"$deqp_path/framework/qphelper/qpTestLog.c",
"$deqp_path/framework/qphelper/qpTestLog.h",
"$deqp_path/framework/qphelper/qpWatchDog.c",
"$deqp_path/framework/qphelper/qpWatchDog.h",
"$deqp_path/framework/qphelper/qpXmlWriter.c",
"$deqp_path/framework/qphelper/qpXmlWriter.h",
]
deqp_glshared_sources = [
"$deqp_path/modules/glshared/glsAttributeLocationTests.cpp",
"$deqp_path/modules/glshared/glsAttributeLocationTests.hpp",
"$deqp_path/modules/glshared/glsBufferTestUtil.cpp",
"$deqp_path/modules/glshared/glsBufferTestUtil.hpp",
"$deqp_path/modules/glshared/glsBuiltinPrecisionTests.cpp",
"$deqp_path/modules/glshared/glsBuiltinPrecisionTests.hpp",
"$deqp_path/modules/glshared/glsCalibration.cpp",
"$deqp_path/modules/glshared/glsCalibration.hpp",
"$deqp_path/modules/glshared/glsDrawTest.cpp",
"$deqp_path/modules/glshared/glsDrawTest.hpp",
"$deqp_path/modules/glshared/glsFboCompletenessTests.cpp",
"$deqp_path/modules/glshared/glsFboCompletenessTests.hpp",
"$deqp_path/modules/glshared/glsFboUtil.cpp",
"$deqp_path/modules/glshared/glsFboUtil.hpp",
"$deqp_path/modules/glshared/glsFragmentOpUtil.cpp",
"$deqp_path/modules/glshared/glsFragmentOpUtil.hpp",
"$deqp_path/modules/glshared/glsFragOpInteractionCase.cpp",
"$deqp_path/modules/glshared/glsFragOpInteractionCase.hpp",
"$deqp_path/modules/glshared/glsInteractionTestUtil.cpp",
"$deqp_path/modules/glshared/glsInteractionTestUtil.hpp",
"$deqp_path/modules/glshared/glsLifetimeTests.cpp",
"$deqp_path/modules/glshared/glsLifetimeTests.hpp",
"$deqp_path/modules/glshared/glsLongStressCase.cpp",
"$deqp_path/modules/glshared/glsLongStressCase.hpp",
"$deqp_path/modules/glshared/glsLongStressTestUtil.cpp",
"$deqp_path/modules/glshared/glsLongStressTestUtil.hpp",
"$deqp_path/modules/glshared/glsMemoryStressCase.cpp",
"$deqp_path/modules/glshared/glsMemoryStressCase.hpp",
"$deqp_path/modules/glshared/glsRandomShaderCase.cpp",
"$deqp_path/modules/glshared/glsRandomShaderCase.hpp",
"$deqp_path/modules/glshared/glsRandomShaderProgram.cpp",
"$deqp_path/modules/glshared/glsRandomShaderProgram.hpp",
"$deqp_path/modules/glshared/glsRandomUniformBlockCase.cpp",
"$deqp_path/modules/glshared/glsRandomUniformBlockCase.hpp",
"$deqp_path/modules/glshared/glsSamplerObjectTest.cpp",
"$deqp_path/modules/glshared/glsSamplerObjectTest.hpp",
"$deqp_path/modules/glshared/glsScissorTests.cpp",
"$deqp_path/modules/glshared/glsScissorTests.hpp",
"$deqp_path/modules/glshared/glsShaderConstExprTests.cpp",
"$deqp_path/modules/glshared/glsShaderConstExprTests.hpp",
"$deqp_path/modules/glshared/glsShaderExecUtil.cpp",
"$deqp_path/modules/glshared/glsShaderLibraryCase.cpp",
"$deqp_path/modules/glshared/glsShaderExecUtil.hpp",
"$deqp_path/modules/glshared/glsShaderLibrary.cpp",
"$deqp_path/modules/glshared/glsShaderLibrary.hpp",
"$deqp_path/modules/glshared/glsShaderLibraryCase.cpp",
"$deqp_path/modules/glshared/glsShaderLibraryCase.hpp",
"$deqp_path/modules/glshared/glsShaderPerformanceCase.cpp",
"$deqp_path/modules/glshared/glsShaderPerformanceCase.hpp",
"$deqp_path/modules/glshared/glsShaderPerformanceMeasurer.cpp",
"$deqp_path/modules/glshared/glsShaderPerformanceMeasurer.hpp",
"$deqp_path/modules/glshared/glsShaderRenderCase.cpp",
"$deqp_path/modules/glshared/glsStateQueryUtil.cpp",
"$deqp_path/modules/glshared/glsShaderRenderCase.hpp",
"$deqp_path/modules/glshared/glsStateChangePerfTestCases.cpp",
"$deqp_path/modules/glshared/glsStateChangePerfTestCases.hpp",
"$deqp_path/modules/glshared/glsStateQueryUtil.cpp",
"$deqp_path/modules/glshared/glsStateQueryUtil.hpp",
"$deqp_path/modules/glshared/glsTextureBufferCase.cpp",
"$deqp_path/modules/glshared/glsTextureBufferCase.hpp",
"$deqp_path/modules/glshared/glsTextureStateQueryTests.cpp",
"$deqp_path/modules/glshared/glsTextureStateQueryTests.hpp",
"$deqp_path/modules/glshared/glsTextureTestUtil.cpp",
"$deqp_path/modules/glshared/glsTextureTestUtil.hpp",
"$deqp_path/modules/glshared/glsUniformBlockCase.cpp",
"$deqp_path/modules/glshared/glsUniformBlockCase.hpp",
"$deqp_path/modules/glshared/glsVertexArrayTests.cpp",
"$deqp_path/modules/glshared/glsVertexArrayTests.hpp",
]
deqp_libtester_sources = [
"$deqp_path/execserver/xsDefs.cpp",
"$deqp_path/execserver/xsDefs.hpp",
"$deqp_path/execserver/xsExecutionServer.cpp",
"$deqp_path/execserver/xsExecutionServer.hpp",
"$deqp_path/execserver/xsPosixFileReader.cpp",
"$deqp_path/execserver/xsPosixFileReader.hpp",
"$deqp_path/execserver/xsPosixTestProcess.cpp",
"$deqp_path/execserver/xsPosixTestProcess.hpp",
"$deqp_path/execserver/xsProtocol.cpp",
"$deqp_path/execserver/xsProtocol.hpp",
"$deqp_path/execserver/xsTcpServer.cpp",
"$deqp_path/execserver/xsTcpServer.hpp",
"$deqp_path/execserver/xsTestDriver.cpp",
"$deqp_path/execserver/xsTestDriver.hpp",
"$deqp_path/execserver/xsTestProcess.cpp",
"$deqp_path/execserver/xsTestProcess.hpp",
"$deqp_path/executor/xeBatchExecutor.cpp",
"$deqp_path/executor/xeBatchExecutor.hpp",
"$deqp_path/executor/xeBatchResult.cpp",
"$deqp_path/executor/xeBatchResult.hpp",
"$deqp_path/executor/xeCallQueue.cpp",
"$deqp_path/executor/xeCallQueue.hpp",
"$deqp_path/executor/xeCommLink.cpp",
"$deqp_path/executor/xeCommLink.hpp",
"$deqp_path/executor/xeContainerFormatParser.cpp",
"$deqp_path/executor/xeContainerFormatParser.hpp",
"$deqp_path/executor/xeDefs.cpp",
"$deqp_path/executor/xeDefs.hpp",
"$deqp_path/executor/xeLocalTcpIpLink.cpp",
"$deqp_path/executor/xeLocalTcpIpLink.hpp",
"$deqp_path/executor/xeTcpIpLink.cpp",
"$deqp_path/executor/xeTcpIpLink.hpp",
"$deqp_path/executor/xeTestCase.cpp",
"$deqp_path/executor/xeTestCase.hpp",
"$deqp_path/executor/xeTestCaseListParser.cpp",
"$deqp_path/executor/xeTestCaseListParser.hpp",
"$deqp_path/executor/xeTestCaseResult.cpp",
"$deqp_path/executor/xeTestCaseResult.hpp",
"$deqp_path/executor/xeTestLogParser.cpp",
"$deqp_path/executor/xeTestLogParser.hpp",
"$deqp_path/executor/xeTestLogWriter.cpp",
"$deqp_path/executor/xeTestLogWriter.hpp",
"$deqp_path/executor/xeTestResultParser.cpp",
"$deqp_path/executor/xeTestResultParser.hpp",
"$deqp_path/executor/xeXMLParser.cpp",
"$deqp_path/executor/xeXMLParser.hpp",
"$deqp_path/executor/xeXMLWriter.cpp",
"$deqp_path/executor/xeXMLWriter.hpp",
"$deqp_path/framework/platform/null/tcuNullContextFactory.cpp",
"$deqp_path/framework/platform/null/tcuNullContextFactory.hpp",
"$deqp_path/framework/platform/null/tcuNullRenderContext.cpp",
"deqp_support/tcuANGLENativeDisplayFactory.cpp",
"deqp_support/tcuANGLENativeDisplayFactory.h",
......@@ -1125,21 +1983,6 @@ deqp_libtester_sources = [
"deqp_support/tcuRandomOrderExecutor.h",
]
deqp_libtester_sources_win = [
"$deqp_path/framework/delibs/dethread/win32/deMutexWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deSemaphoreWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deThreadLocalWin32.c",
"$deqp_path/framework/delibs/dethread/win32/deThreadWin32.c",
]
deqp_libtester_sources_unix = [
"$deqp_path/framework/delibs/dethread/unix/deMutexUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deNamedSemaphoreUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deSemaphoreUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deThreadLocalUnix.c",
"$deqp_path/framework/delibs/dethread/unix/deThreadUnix.c",
]
deqp_libtester_sources_android = [
"$deqp_path/framework/platform/android/tcuAndroidInternals.cpp",
"$deqp_path/framework/platform/android/tcuAndroidInternals.hpp",
......
......@@ -60,10 +60,13 @@ std::string DrawElementsToGoogleTestName(const std::string &dEQPName)
// of egl-master.txt that has the full list of tests.
const char *gCaseListSearchPaths[] = {
"/../../third_party/deqp/src/external/openglcts/data/mustpass/gles/aosp_mustpass/master/",
"/../../third_party/deqp/src/external/openglcts/data/mustpass/gles/khronos_mustpass/master/",
"/../../third_party/angle/third_party/deqp/src/external/openglcts/data/mustpass/gles/"
"aosp_mustpass/master/",
"khronos_mustpass/master/",
"/../../sdcard/chromium_tests_root/third_party/angle/third_party/deqp/src/external/openglcts/"
"data/mustpass/gles/aosp_mustpass/master/",
"data/mustpass/gles/khronos_mustpass/master/",
"/../../third_party/deqp/src/android/cts/master/",
"/../../third_party/angle/third_party/deqp/src/android/cts/master/",
"/../../sdcard/chromium_tests_root/third_party/angle/third_party/deqp/src/android/cts/master/",
......@@ -76,18 +79,13 @@ const char *gTestExpectationsSearchPaths[] = {
"/../../sdcard/chromium_tests_root/third_party/angle/src/tests/deqp_support/",
};
const char *gCaseListFiles[] = {
"gles2-master.txt",
"gles3-master.txt",
"gles31-master.txt",
"egl-master.txt",
};
const char *gCaseListFiles[] = {"gles2-master.txt", "gles3-master.txt", "gles31-master.txt",
"egl-master.txt", "gles2-khr-master.txt", "gles3-khr-master.txt"};
const char *gTestExpectationsFiles[] = {
"deqp_gles2_test_expectations.txt",
"deqp_gles3_test_expectations.txt",
"deqp_gles31_test_expectations.txt",
"deqp_egl_test_expectations.txt",
"deqp_gles2_test_expectations.txt", "deqp_gles3_test_expectations.txt",
"deqp_gles31_test_expectations.txt", "deqp_egl_test_expectations.txt",
"deqp_khr_gles2_test_expectations.txt", "deqp_khr_gles3_test_expectations.txt",
};
using APIInfo = std::pair<const char *, GPUTestConfig::API>;
......@@ -540,6 +538,14 @@ ANGLE_INSTANTIATE_DEQP_TEST_CASE(GLES31, 2);
ANGLE_INSTANTIATE_DEQP_TEST_CASE(EGL, 3);
#endif
#ifdef ANGLE_DEQP_KHR_GLES2_TESTS
ANGLE_INSTANTIATE_DEQP_TEST_CASE(KHR_GLES2, 4);
#endif
#ifdef ANGLE_DEQP_KHR_GLES3_TESTS
ANGLE_INSTANTIATE_DEQP_TEST_CASE(KHR_GLES3, 5);
#endif
void HandleDisplayType(const char *displayTypeString)
{
std::stringstream argStream;
......
......@@ -35,35 +35,27 @@ tcu::TestContext *g_testCtx = nullptr;
tcu::TestPackageRoot *g_root = nullptr;
tcu::RandomOrderExecutor *g_executor = nullptr;
const char *g_dEQPDataSearchDirs[] = {
"../../../third_party/deqp/src/data",
"../../sdcard/chromium_tests_root/third_party/angle/third_party/deqp/src/data",
"../../third_party/angle/third_party/deqp/src/data",
"../../third_party/deqp/src/data",
"../third_party/deqp/src/data",
"data",
"third_party/deqp/src/data",
const char *gDataDirHaystack[] = {
"../../../third_party/deqp/src",
"../../sdcard/chromium_tests_root/third_party/angle/third_party/deqp/src",
"../../third_party/angle/third_party/deqp/src",
"../../third_party/deqp/src",
"../third_party/deqp/src",
".",
"third_party/deqp/src",
};
bool FindDataDir(std::string *dataDirOut)
bool FindDataDir(const char *needle, std::string *dataDirOut)
{
for (auto searchDir : g_dEQPDataSearchDirs)
for (const char *searchDir : gDataDirHaystack)
{
if (angle::IsDirectory((std::string(searchDir) + "/gles2").c_str()))
{
*dataDirOut = searchDir;
return true;
}
std::stringstream dirStream;
dirStream << angle::GetExecutableDirectory() << "/" << searchDir;
std::string dataDir = dirStream.str();
dirStream << "/gles2";
std::string searchPath = dirStream.str();
dirStream << angle::GetExecutableDirectory() << "/" << searchDir << "/" << needle;
std::string candidateDataDir = dirStream.str();
if (angle::IsDirectory(searchPath.c_str()))
if (angle::IsDirectory(candidateDataDir.c_str()))
{
*dataDirOut = dataDir;
*dataDirOut = candidateDataDir;
return true;
}
}
......@@ -102,7 +94,7 @@ ANGLE_LIBTESTER_EXPORT bool deqp_libtester_init_platform(int argc,
}
std::string deqpDataDir;
if (!FindDataDir(&deqpDataDir))
if (!FindDataDir(ANGLE_DEQP_DATA_DIR, &deqpDataDir))
{
std::cout << "Failed to find dEQP data directory." << std::endl;
return false;
......
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file contains a list of defective dEQP conformance tests. The expected
// format is:
// {BUG#} {MODIFIERS} : {TEST_NAME} = {PASS,FAIL,FLAKY,TIMEOUT,SKIP}
//
// MODIFIERS can be a combination of the below list, combined with a logical AND:
// WIN XP VISTA WIN7 WIN8 WIN10
// MAC LEOPARD SNOWLEOPARD LION MOUNTAINLION MAVERICKS YOSEMITE ELCAPITAN SIERRA HIGHSIERRA MOJAVE
// LINUX CHROMEOS ANDROID
// NVIDIA AMD INTEL
// DEBUG RELEASE
// D3D9 D3D11 OPENGL GLES VULKAN
// NEXUS5X PIXEL2
// QUADROP400
//
//
// TEST_NAME can be a specific test name, or have a '*' in the end, which
// indicates a prefix matching.
//
// Examples:
// fails on both windows and mac (crash)
// 91530 WIN : context_lost_restored = SKIP
// 91530 MAC : context_lost_restored = SKIP
// fails on windows using NVIDIA GPUs
// 91533 WIN NVIDIA : gl_min_uniforms = FAIL
// fails on Nexus5X with GLES backend (hangs)
// 91531 NEXUS5X GLES : conformance_more_* = SKIP
// Relates to a difference in spec with ES and Core GL.
3381 : KHR-GLES2.shaders.negative.initialize = FAIL
// Failures with floating point extensions
3451 D3D9 D3D11 OPENGL GLES : KHR-GLES2.core.internalformat.texture2d.rgb_half_float_rgb16f = FAIL
3451 D3D9 D3D11 OPENGL GLES : KHR-GLES2.core.internalformat.texture2d.rgba_half_float_rgba16f = FAIL
3451 D3D9 D3D11 OPENGL GLES : KHR-GLES2.core.internalformat.texture2d.rgb_half_float_rgb16f_linear = FAIL
3451 D3D9 D3D11 OPENGL GLES : KHR-GLES2.core.internalformat.texture2d.rgba_half_float_rgba16f_linear = FAIL
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file contains a list of defective dEQP conformance tests. The expected
// format is:
// {BUG#} {MODIFIERS} : {TEST_NAME} = {PASS,FAIL,FLAKY,TIMEOUT,SKIP}
//
// MODIFIERS can be a combination of the below list, combined with a logical AND:
// WIN XP VISTA WIN7 WIN8 WIN10
// MAC LEOPARD SNOWLEOPARD LION MOUNTAINLION MAVERICKS YOSEMITE ELCAPITAN SIERRA HIGHSIERRA MOJAVE
// LINUX CHROMEOS ANDROID
// NVIDIA AMD INTEL
// DEBUG RELEASE
// D3D9 D3D11 OPENGL GLES VULKAN
// NEXUS5X PIXEL2
// QUADROP400
//
//
// TEST_NAME can be a specific test name, or have a '*' in the end, which
// indicates a prefix matching.
//
// Examples:
// fails on both windows and mac (crash)
// 91530 WIN : context_lost_restored = SKIP
// 91530 MAC : context_lost_restored = SKIP
// fails on windows using NVIDIA GPUs
// 91533 WIN NVIDIA : gl_min_uniforms = FAIL
// fails on Nexus5X with GLES backend (hangs)
// 91531 NEXUS5X GLES : conformance_more_* = SKIP
// For now we only log Vulkan test expectations. More back-ends can follow as we need them.
// Crashes trying to load non-existent texture load function.
3455 VULKAN : KHR-GLES3.texture_filter_anisotropic.drawing = SKIP
3455 VULKAN : KHR-GLES3.copy_tex_image_conversions.forbidden.* = SKIP
3455 VULKAN : KHR-GLES3.copy_tex_image_conversions.required.renderbuffer_* = SKIP
3455 VULKAN : KHR-GLES3.packed_pixels.rectangle.r* = SKIP
3455 VULKAN : KHR-GLES3.packed_pixels.pbo_rectangle.r* = SKIP
3455 VULKAN : KHR-GLES3.packed_pixels.pbo_rectangle.srgb8_alpha8 = SKIP
// Failures related to RGB5A1 texture formats.
3456 VULKAN : KHR-GLES3.core.internalformat.texture2d.rgba_unsigned_byte_rgb5_a1 = SKIP
3456 VULKAN : KHR-GLES3.core.internalformat.copy_tex_image.rgb5_a1 = SKIP
// Depth/stencil related failures
3457 VULKAN : KHR-GLES3.core.internalformat.texture2d.depth_stencil_unsigned_int_24_8_depth24_stencil8 = FAIL
3457 VULKAN : KHR-GLES3.packed_pixels.rectangle.depth* = SKIP
3457 VULKAN : KHR-GLES3.packed_pixels.pbo_rectangle.depth* = SKIP
3457 VULKAN : KHR-GLES3.packed_depth_stencil.* = SKIP
// CopyTexImage conversion bugs.
3458 VULKAN : KHR-GLES3.copy_tex_image_conversions.required.* = FAIL
// Require 3D textures.
3188 VULKAN : KHR-GLES3.packed_pixels.varied_rectangle.* = SKIP
// Shader related failure. Not Vulkan-specific.
3459 : KHR-GLES3.shaders.uniform_block.common.name_matching = FAIL
// Issues with repeat filtering mode.
3460 VULKAN : KHR-GLES3.texture_repeat_mode.* = FAIL
//
// Copyright 2019 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// glcTestPackageEntry_override.cpp:
// Overrides for dEQP's OpenGL Conformance Test Package Entry Points.
//
#include "glcConfigPackage.hpp"
#include "es2cTestPackage.hpp"
#include "tes2TestPackage.hpp"
#include "es3cTestPackage.hpp"
#include "tes3TestPackage.hpp"
#include "es31cTestPackage.hpp"
#include "esextcTestPackage.hpp"
#include "tes31TestPackage.hpp"
#include "es32cTestPackage.hpp"
#include "gl3cTestPackages.hpp"
#include "gl4cTestPackages.hpp"
#include "glcNoDefaultContextPackage.hpp"
namespace glcts
{
// static tcu::TestPackage* createConfigPackage(tcu::TestContext& testCtx)
// {
// return new glcts::ConfigPackage(testCtx, "CTS-Configs");
// }
static tcu::TestPackage *createES2Package(tcu::TestContext &testCtx)
{
return new es2cts::TestPackage(testCtx, "KHR-GLES2");
}
static tcu::TestPackage *createES30Package(tcu::TestContext &testCtx)
{
return new es3cts::ES30TestPackage(testCtx, "KHR-GLES3");
}
static tcu::TestPackage *createES31Package(tcu::TestContext &testCtx)
{
return new es31cts::ES31TestPackage(testCtx, "KHR-GLES31");
}
static tcu::TestPackage *createESEXTPackage(tcu::TestContext &testCtx)
{
return new esextcts::ESEXTTestPackage(testCtx, "KHR-GLESEXT");
}
static tcu::TestPackage *createES32Package(tcu::TestContext &testCtx)
{
return new es32cts::ES32TestPackage(testCtx, "KHR-GLES32");
}
// static tcu::TestPackage* createNoDefaultCustomContextPackage(tcu::TestContext& testCtx)
// {
// return new glcts::NoDefaultContextPackage(testCtx, "KHR-NoContext");
// }
// static tcu::TestPackage* createGL30Package(tcu::TestContext& testCtx)
// {
// return new gl3cts::GL30TestPackage(testCtx, "KHR-GL30");
// }
// static tcu::TestPackage* createGL31Package(tcu::TestContext& testCtx)
// {
// return new gl3cts::GL31TestPackage(testCtx, "KHR-GL31");
// }
// static tcu::TestPackage* createGL32Package(tcu::TestContext& testCtx)
// {
// return new gl3cts::GL32TestPackage(testCtx, "KHR-GL32");
// }
// static tcu::TestPackage* createGL33Package(tcu::TestContext& testCtx)
// {
// return new gl3cts::GL33TestPackage(testCtx, "KHR-GL33");
// }
// static tcu::TestPackage* createGL40Package(tcu::TestContext& testCtx)
// {
// return new gl4cts::GL40TestPackage(testCtx, "KHR-GL40");
// }
// static tcu::TestPackage* createGL41Package(tcu::TestContext& testCtx)
// {
// return new gl4cts::GL41TestPackage(testCtx, "KHR-GL41");
// }
// static tcu::TestPackage* createGL42Package(tcu::TestContext& testCtx)
// {
// return new gl4cts::GL42TestPackage(testCtx, "KHR-GL42");
// }
// static tcu::TestPackage* createGL43Package(tcu::TestContext& testCtx)
// {
// return new gl4cts::GL43TestPackage(testCtx, "KHR-GL43");
// }
// static tcu::TestPackage* createGL44Package(tcu::TestContext& testCtx)
// {
// return new gl4cts::GL44TestPackage(testCtx, "KHR-GL44");
// }
// static tcu::TestPackage* createGL45Package(tcu::TestContext& testCtx)
// {
// return new gl4cts::GL45TestPackage(testCtx, "KHR-GL45");
// }
// static tcu::TestPackage* createGL46Package(tcu::TestContext& testCtx)
// {
// return new gl4cts::GL46TestPackage(testCtx, "KHR-GL46");
// }
void registerPackages(void)
{
tcu::TestPackageRegistry *registry = tcu::TestPackageRegistry::getSingleton();
// registry->registerPackage("CTS-Configs", createConfigPackage);
registry->registerPackage("KHR-GLES2", createES2Package);
registry->registerPackage("KHR-GLES3", createES30Package);
registry->registerPackage("KHR-GLES31", createES31Package);
registry->registerPackage("KHR-GLESEXT", createESEXTPackage);
registry->registerPackage("KHR-GLES32", createES32Package);
// registry->registerPackage("KHR-NoContext", createNoDefaultCustomContextPackage);
// registry->registerPackage("KHR-GL30", createGL30Package);
// registry->registerPackage("KHR-GL31", createGL31Package);
// registry->registerPackage("KHR-GL32", createGL32Package);
// registry->registerPackage("KHR-GL33", createGL33Package);
// registry->registerPackage("KHR-GL40", createGL40Package);
// registry->registerPackage("KHR-GL41", createGL41Package);
// registry->registerPackage("KHR-GL42", createGL42Package);
// registry->registerPackage("KHR-GL43", createGL43Package);
// registry->registerPackage("KHR-GL44", createGL44Package);
// registry->registerPackage("KHR-GL45", createGL45Package);
// registry->registerPackage("KHR-GL46", createGL46Package);
}
} // namespace glcts
class RegisterCTSPackages
{
public:
RegisterCTSPackages(void) { glcts::registerPackages(); }
};
RegisterCTSPackages g_registerCTS;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment