Fixup fuzzer name.
The AST clone fuzzer was accidentally named the same as the
SPIRV-Reader fuzzer. This Cl renames to fixup the conflict.
Change-Id: I757163718dc4e2097564427f4ac9f97a6cba9d55
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/34680
Commit-Queue: dan sinclair <dsinclair@chromium.org>
Auto-Submit: dan sinclair <dsinclair@chromium.org>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
diff --git a/BUILD.gn b/BUILD.gn
index 5a7fb80..b20e843 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -773,8 +773,8 @@
"src/ast/location_decoration_test.cc",
"src/ast/loop_statement_test.cc",
"src/ast/member_accessor_expression_test.cc",
- "src/ast/module_test.cc",
"src/ast/module_clone_test.cc",
+ "src/ast/module_test.cc",
"src/ast/null_literal_test.cc",
"src/ast/return_statement_test.cc",
"src/ast/scalar_constructor_expression_test.cc",
@@ -1314,7 +1314,7 @@
}
if (tint_build_wgsl_reader && tint_build_wgsl_writer) {
- fuzzer_test("tint_spv_reader_fuzzer") {
+ fuzzer_test("tint_ast_clone_fuzzer") {
sources = [ "fuzzers/tint_ast_clone_fuzzer.cc" ]
deps = [
":libtint_wgsl_reader_src",