From f7e3bfc1a5a71bd4a54fa6bdad76887401808bef Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Wed, 2 Dec 2020 15:23:28 +0000 Subject: [PATCH] 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 Auto-Submit: dan sinclair Reviewed-by: Corentin Wallez --- BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 5a7fb80342..b20e84328c 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -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",