Skip to content

Commit 04466f6

Browse files
gballetDoozers
authored andcommitted
tests/fuzzers/bls12381: deactivate BLS fuzzer when CGO_ENABLED=0 (ethereum#28653)
tests/fuzzers/bls12381: deactivate fuzzer when CGO_ENABLED=0
1 parent 0c12f82 commit 04466f6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

tests/fuzzers/bls12381/bls12381_fuzz.go

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17+
//go:build cgo
18+
// +build cgo
19+
1720
package bls
1821

1922
import (

tests/fuzzers/bls12381/bls12381_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414
// You should have received a copy of the GNU Lesser General Public License
1515
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
1616

17+
//go:build cgo
18+
// +build cgo
19+
1720
package bls
1821

1922
import "testing"

0 commit comments

Comments
 (0)