spirv-reader: remove redundant disabled test
Testing result signedness conversion was already covered
in https://dawn-review.googlesource.com/c/tint/+/35180
Change-Id: I2f7b1caf512ceb81fbe2ea6a2037de61dea25c96
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/35360
Auto-Submit: David Neto <dneto@google.com>
Reviewed-by: dan sinclair <dsinclair@chromium.org>
Commit-Queue: David Neto <dneto@google.com>
diff --git a/src/reader/spirv/parser_impl_handle_test.cc b/src/reader/spirv/parser_impl_handle_test.cc
index 81726fe..afe18d6 100644
--- a/src/reader/spirv/parser_impl_handle_test.cc
+++ b/src/reader/spirv/parser_impl_handle_test.cc
@@ -3459,23 +3459,6 @@
}
})"}}));
-INSTANTIATE_TEST_SUITE_P(
- // The SPIR-V result type could be integral but of different signedness
- // than the sampled texel type. In these cases the result should be
- // converted to match the signedness of the SPIR-V result type. This
- // affects any instruction that yields texel values.
- DISABLED_ImageAccess_ConvertResultSignedness,
- SpvParserTest_ImageAccessTest,
- ::testing::ValuesIn(std::vector<ImageAccessCase>
- // OpImageRead
- // OpImageFetch
- // OpImageGather
- // OpImageSampleExplicitLod
- // OpImageSampleImplicitLod
- // In WGSL, depth-reference sampling only yields
- // floating point results in WGSL.
- {}));
-
struct ImageCoordsCase {
// SPIR-V image type, excluding result ID and opcode
std::string spirv_image_type_details;