mirror of
https://github.com/ii64/sonic.git
synced 2026-06-21 00:46:43 +08:00
* fix: adapts to Mac M1 * feat: add `noavx` mode * fix: fix SSE4 segfault with latest asm2asm * chore: remove excessive spaces * chore: more compact assembly * chore: re-indent with 4 spaces * chore: remove excessive space Co-authored-by: chenzhuoyu <chenzhuoyu@bytedance.com>
13 lines
No EOL
321 B
Makefile
13 lines
No EOL
321 B
Makefile
|
|
fuzz:
|
|
mkdir -p ./testdata/fuzz/FuzzMain
|
|
rm -rf ./go-fuzz-corpus
|
|
git clone https://github.com/dvyukov/go-fuzz-corpus.git ./go-fuzz-corpus/
|
|
file2fuzz -o ./testdata/fuzz/FuzzMain ./go-fuzz-corpus/json/corpus/* ./corpus/*
|
|
|
|
run:
|
|
GOARCH=amd64 go test -fuzz=Fuzz -v
|
|
|
|
clean:
|
|
rm -rf ./go-fuzz-corpus/
|
|
rm -rf ./testdata/
|