From 33a0d47a9e8d173bcc9e07cf25cb84b59dde9b34 Mon Sep 17 00:00:00 2001 From: AdamKorcz <44787359+AdamKorcz@users.noreply.github.com> Date: Sat, 3 Apr 2021 20:14:32 +0100 Subject: [PATCH] Refactor tidb build (#5577) --- projects/tidb/build.sh | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/projects/tidb/build.sh b/projects/tidb/build.sh index c63172ad6..da5fd1c43 100755 --- a/projects/tidb/build.sh +++ b/projects/tidb/build.sh @@ -15,13 +15,7 @@ # ################################################################################ -if [[ $SANITIZER = *coverage* ]]; then - compile_go_fuzzer github.com/pingcap/tidb/types FuzzMarshalJSON fuzzMarshalJSON - compile_go_fuzzer github.com/pingcap/tidb/types FuzzNewBitLiteral fuzzNewBitLiteral - compile_go_fuzzer github.com/pingcap/tidb/types FuzzNewHexLiteral fuzzNewHexLiteral - exit 0 -fi -compile_go_fuzzer ./types FuzzMarshalJSON fuzzMarshalJSON -compile_go_fuzzer ./types FuzzNewBitLiteral fuzzNewBitLiteral -compile_go_fuzzer ./types FuzzNewHexLiteral fuzzNewHexLiteral +compile_go_fuzzer github.com/pingcap/tidb/types FuzzMarshalJSON fuzzMarshalJSON +compile_go_fuzzer github.com/pingcap/tidb/types FuzzNewBitLiteral fuzzNewBitLiteral +compile_go_fuzzer github.com/pingcap/tidb/types FuzzNewHexLiteral fuzzNewHexLiteral