Skip to content

Commit

Permalink
tests/fuzzers/bls12381: deactivate BLS fuzzer when CGO_ENABLED=0 (eth…
Browse files Browse the repository at this point in the history
…ereum#28653)

tests/fuzzers/bls12381: deactivate fuzzer when CGO_ENABLED=0
  • Loading branch information
gballet authored and GrapeBaBa committed Dec 10, 2023
1 parent 00a1d12 commit 3825c49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/fuzzers/bls12381/bls12381_fuzz.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

//go:build cgo
// +build cgo

package bls

import (
Expand Down
3 changes: 3 additions & 0 deletions tests/fuzzers/bls12381/bls12381_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

//go:build cgo
// +build cgo

package bls

import "testing"
Expand Down

0 comments on commit 3825c49

Please sign in to comment.