spirv-reader: add disabled test for compare sampling with explicit Lod

This is blocked by discussion at W3C
https://github.com/gpuweb/gpuweb/issues/1319

Bug: tint:482
Change-Id: Ic3a2b32fb09a431edbd7716a394a9eb3f163fb85
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/40621
Commit-Queue: Ben Clayton <bclayton@google.com>
Reviewed-by: Ben Clayton <bclayton@google.com>
Auto-Submit: 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 0bb9024..8e775dd 100644
--- a/src/reader/spirv/parser_impl_handle_test.cc
+++ b/src/reader/spirv/parser_impl_handle_test.cc
@@ -2494,6 +2494,20 @@
             ScalarConstructor[not set]{0.000000}
           })"}}));
 
+INSTANTIATE_TEST_SUITE_P(DISABLED_ImageSampleDrefExplicitLod,
+                         SpvParserTest_SampledImageAccessTest,
+                         // crbug.com/tint/482
+                         // Disabled pending the outcome of
+                         // https://github.com/gpuweb/gpuweb/issues/1319
+                         ::testing::Values(
+                             // depth 2D
+                             // depth 2D offset
+                             // depth 2D-array
+                             // depth 2D-array offset
+                             // depth cube
+                             // depth cube-array
+                             ));
+
 using SpvParserTest_ImageAccessTest =
     SpvParserTestBase<::testing::TestWithParam<ImageAccessCase>>;