Skip to content

Commit

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

tests/fuzzers/bls12381: deactivate fuzzer when CGO_ENABLED=0
  • Loading branch information
gballet authored Dec 7, 2023
1 parent 55b483d commit a113497
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 a113497

Please sign in to comment.