Fix test-runner not skipping dirsWithNoPassExpectations

Tests were moved to a new 'tint' subdirectory for the tint -> Dawn
merge, but these paths were not updated.

Also regen'd files for HLSL and a couple are no longer failing.

Change-Id: I11c315d948013ed30635d20e6da565450859cb03
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/84341
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: James Price <jrprice@google.com>
Commit-Queue: Antonio Maiorano <amaiorano@google.com>
diff --git a/test/tint/unittest/reader/spirv/SpvParserTest_VectorExtractDynamic_UnsignedIndex.spvasm.expected.hlsl b/test/tint/unittest/reader/spirv/SpvParserTest_VectorExtractDynamic_UnsignedIndex.spvasm.expected.hlsl
deleted file mode 100644
index e6de520..0000000
--- a/test/tint/unittest/reader/spirv/SpvParserTest_VectorExtractDynamic_UnsignedIndex.spvasm.expected.hlsl
+++ /dev/null
@@ -1,13 +0,0 @@
-SKIP: FAILED
-
-void main_1() {
-  const uint2 x_1 = uint2(3u, 4u);
-  const uint x_10 = x_1[1u];
-  return;
-}
-
-[numthreads(1, 1, 1)]
-void main() {
-  main_1();
-  return;
-}
diff --git a/test/tint/vk-gl-cts/graphicsfuzz/color-set-in-for-loop/0-opt.wgsl.expected.hlsl b/test/tint/vk-gl-cts/graphicsfuzz/color-set-in-for-loop/0-opt.wgsl.expected.hlsl
deleted file mode 100755
index 139e7dc..0000000
--- a/test/tint/vk-gl-cts/graphicsfuzz/color-set-in-for-loop/0-opt.wgsl.expected.hlsl
+++ /dev/null
Binary files differ
diff --git a/tools/src/cmd/test-runner/main.go b/tools/src/cmd/test-runner/main.go
index 71367e1..b47c51d 100644
--- a/tools/src/cmd/test-runner/main.go
+++ b/tools/src/cmd/test-runner/main.go
@@ -52,9 +52,9 @@
 // These directories contain large corpora of tests for which the generated code
 // is uninteresting.
 var dirsWithNoPassExpectations = []string{
-	"/test/benchmark/",
-	"/test/unittest/",
-	"/test/vk-gl-cts/",
+	"/test/tint/benchmark/",
+	"/test/tint/unittest/",
+	"/test/tint/vk-gl-cts/",
 }
 
 func main() {