Skip to content

Commit

Permalink
tidb: fix broken build (#12510)
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Korczynski <[email protected]>
  • Loading branch information
AdamKorcz authored Sep 17, 2024
1 parent 3302ca5 commit d23806b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions projects/tidb/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
#
################################################################################

mv $SRC/fuzzMarshalJSON.go $SRC/tidb/types/
mv $SRC/fuzzNewBitLiteral.go $SRC/tidb/types/
mv $SRC/fuzzNewHexLiteral.go $SRC/tidb/types/
mv $SRC/fuzzMarshalJSON.go $SRC/tidb/pkg/types/
mv $SRC/fuzzNewBitLiteral.go $SRC/tidb/pkg/types/
mv $SRC/fuzzNewHexLiteral.go $SRC/tidb/pkg/types/

compile_go_fuzzer github.com/pingcap/tidb/types FuzzUnmarshalJSON fuzzUnmarshalJSON
compile_go_fuzzer github.com/pingcap/tidb/types FuzzNewBitLiteral fuzzNewBitLiteral
compile_go_fuzzer github.com/pingcap/tidb/types FuzzNewHexLiteral fuzzNewHexLiteral
compile_go_fuzzer github.com/pingcap/tidb/pkg/types FuzzUnmarshalJSON fuzzUnmarshalJSON
compile_go_fuzzer github.com/pingcap/tidb/pkg/types FuzzNewBitLiteral fuzzNewBitLiteral
compile_go_fuzzer github.com/pingcap/tidb/pkg/types FuzzNewHexLiteral fuzzNewHexLiteral

0 comments on commit d23806b

Please sign in to comment.