Commit 3806696c by Shahbaz Youssefi Committed by Commit Bot

Fix expectations file for prerotation dEQP executables

Bug: angleproject:4901 Change-Id: Ibc930a27887a3ba710168a9b122d46aac1530984 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2523548Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org>
parent 34130c2e
......@@ -1189,8 +1189,12 @@ if (build_angle_deqp_tests && !is_fuchsia) {
"deqp_support/angle_deqp_gtest.cpp",
]
expectations_file = "deqp_${_api}_test_expectations.txt"
if (defined(invoker.expectations_file)) {
expectations_file = invoker.expectations_file
}
data = [
"deqp_support/deqp_${_api}_test_expectations.txt",
"deqp_support/${expectations_file}",
"${invoker.mustpass_dir}/${invoker.mustpass_name}",
]
}
......@@ -1346,36 +1350,42 @@ if (build_angle_deqp_tests && !is_fuchsia) {
defines = [ "ANGLE_DEQP_GLES3_ROTATE90_TESTS" ]
sources = deqp_gles3_sources
mustpass_dir = _aosp_mustpass
expectations_file = "deqp_gles3_rotate_test_expectations.txt"
}
angle_deqp_rotate_gtest("gles3_rotate180") {
defines = [ "ANGLE_DEQP_GLES3_ROTATE180_TESTS" ]
sources = deqp_gles3_sources
mustpass_dir = _aosp_mustpass
expectations_file = "deqp_gles3_rotate_test_expectations.txt"
}
angle_deqp_rotate_gtest("gles3_rotate270") {
defines = [ "ANGLE_DEQP_GLES3_ROTATE270_TESTS" ]
sources = deqp_gles3_sources
mustpass_dir = _aosp_mustpass
expectations_file = "deqp_gles3_rotate_test_expectations.txt"
}
angle_deqp_rotate_gtest("gles31_rotate90") {
defines = [ "ANGLE_DEQP_GLES31_ROTATE90_TESTS" ]
sources = deqp_gles31_sources
mustpass_dir = _aosp_mustpass
expectations_file = "deqp_gles31_rotate_test_expectations.txt"
}
angle_deqp_rotate_gtest("gles31_rotate180") {
defines = [ "ANGLE_DEQP_GLES31_ROTATE180_TESTS" ]
sources = deqp_gles31_sources
mustpass_dir = _aosp_mustpass
expectations_file = "deqp_gles31_rotate_test_expectations.txt"
}
angle_deqp_rotate_gtest("gles31_rotate270") {
defines = [ "ANGLE_DEQP_GLES31_ROTATE270_TESTS" ]
sources = deqp_gles31_sources
mustpass_dir = _aosp_mustpass
expectations_file = "deqp_gles31_rotate_test_expectations.txt"
}
}
......
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