mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 18:00:46 +00:00
build: fix missing '!' in shebang of generated oss-fuzz scripts (#34044)
\`oss-fuzz.sh\` line 38 writes \`#/bin/sh\` instead of \`#!/bin/sh\` as the shebang of generated fuzz test runner scripts. \`\`\`diff -#/bin/sh +#!/bin/sh \`\`\` Without the \`!\`, the kernel does not recognize the interpreter directive. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
6ae3f9fa56
commit
b35645bdf7
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ function coverbuild {
|
||||||
sed -i -e 's/TestFuzzCorpus/Test'$function'Corpus/' ./"${function,,}"_test.go
|
sed -i -e 's/TestFuzzCorpus/Test'$function'Corpus/' ./"${function,,}"_test.go
|
||||||
|
|
||||||
cat << DOG > $OUT/$fuzzer
|
cat << DOG > $OUT/$fuzzer
|
||||||
#/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
cd $OUT/$path
|
cd $OUT/$path
|
||||||
go test -run Test${function}Corpus -v $tags -coverprofile \$1 -coverpkg $coverpkg
|
go test -run Test${function}Corpus -v $tags -coverprofile \$1 -coverpkg $coverpkg
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue