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>
This commit is contained in:
dan sinclair 2020-12-02 15:23:28 +00:00 committed by Commit Bot service account
parent 5792783e72
commit f7e3bfc1a5
1 changed files with 2 additions and 2 deletions

View File

@ -773,8 +773,8 @@ source_set("tint_unittests_core_src") {
"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 (build_with_chromium) {
}
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",