summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Fonseca <[email protected]>2018-07-24 13:57:05 +0100
committerJose Fonseca <[email protected]>2018-07-24 15:58:14 +0100
commit04d77d53aa91d1c34b07ef134937d630492e460c (patch)
treec28b37bdbd43568eaca095d4aff4738329a7e11d
parentfd734608c3c40a1a93c6becaced69ddd04d4cf9a (diff)
gallium/tests: Don't ignore S3TC errors.
Now we do full S3TC decompression they should no longer fail. Reviewed-by: Roland Scheidegger <[email protected]>
-rw-r--r--src/gallium/tests/unit/u_format_test.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gallium/tests/unit/u_format_test.c b/src/gallium/tests/unit/u_format_test.c
index 6de581fd049..437cc94b757 100644
--- a/src/gallium/tests/unit/u_format_test.c
+++ b/src/gallium/tests/unit/u_format_test.c
@@ -380,11 +380,6 @@ test_format_unpack_rgba_8unorm(const struct util_format_description *format_desc
if (util_is_double_nan(test->unpacked[0][0][0]))
success = TRUE;
- /* Ignore S3TC errors */
- if (format_desc->layout == UTIL_FORMAT_LAYOUT_S3TC) {
- success = TRUE;
- }
-
if (!success) {
print_unpacked_rgba_8unorm(format_desc, "FAILED: ", unpacked, " obtained\n");
print_unpacked_rgba_8unorm(format_desc, " ", expected, " expected\n");