mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 18:00:46 +00:00
core/vm: more linters (#24783)
This commit is contained in:
parent
be6631beb0
commit
16f2aabc64
2 changed files with 24 additions and 26 deletions
|
|
@ -29,8 +29,6 @@ import (
|
||||||
"github.com/XinFinOrg/XDPoSChain/crypto/blake2b"
|
"github.com/XinFinOrg/XDPoSChain/crypto/blake2b"
|
||||||
"github.com/XinFinOrg/XDPoSChain/crypto/bn256"
|
"github.com/XinFinOrg/XDPoSChain/crypto/bn256"
|
||||||
"github.com/XinFinOrg/XDPoSChain/params"
|
"github.com/XinFinOrg/XDPoSChain/params"
|
||||||
|
|
||||||
//lint:ignore SA1019 Needed for precompile
|
|
||||||
"golang.org/x/crypto/ripemd160"
|
"golang.org/x/crypto/ripemd160"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -230,35 +230,35 @@ func TestAddMod(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// getResult is a convenience function to generate the expected values
|
|
||||||
func getResult(args []*twoOperandParams, opFn executionFunc) []TwoOperandTestcase {
|
|
||||||
var (
|
|
||||||
env = NewEVM(BlockContext{}, TxContext{}, nil, nil, params.TestChainConfig, Config{})
|
|
||||||
stack = newstack()
|
|
||||||
pc = uint64(0)
|
|
||||||
interpreter = env.interpreter.(*EVMInterpreter)
|
|
||||||
)
|
|
||||||
result := make([]TwoOperandTestcase, len(args))
|
|
||||||
for i, param := range args {
|
|
||||||
x := new(uint256.Int).SetBytes(common.Hex2Bytes(param.x))
|
|
||||||
y := new(uint256.Int).SetBytes(common.Hex2Bytes(param.y))
|
|
||||||
stack.push(x)
|
|
||||||
stack.push(y)
|
|
||||||
_, err := opFn(&pc, interpreter, &ScopeContext{nil, stack, nil})
|
|
||||||
if err != nil {
|
|
||||||
log.Fatalln(err)
|
|
||||||
}
|
|
||||||
actual := stack.pop()
|
|
||||||
result[i] = TwoOperandTestcase{param.x, param.y, fmt.Sprintf("%064x", actual)}
|
|
||||||
}
|
|
||||||
return result
|
|
||||||
}
|
|
||||||
|
|
||||||
// utility function to fill the json-file with testcases
|
// utility function to fill the json-file with testcases
|
||||||
// Enable this test to generate the 'testcases_xx.json' files
|
// Enable this test to generate the 'testcases_xx.json' files
|
||||||
func TestWriteExpectedValues(t *testing.T) {
|
func TestWriteExpectedValues(t *testing.T) {
|
||||||
t.Skip("Enable this test to create json test cases.")
|
t.Skip("Enable this test to create json test cases.")
|
||||||
|
|
||||||
|
// getResult is a convenience function to generate the expected values
|
||||||
|
getResult := func(args []*twoOperandParams, opFn executionFunc) []TwoOperandTestcase {
|
||||||
|
var (
|
||||||
|
env = NewEVM(BlockContext{}, TxContext{}, nil, nil, params.TestChainConfig, Config{})
|
||||||
|
stack = newstack()
|
||||||
|
pc = uint64(0)
|
||||||
|
interpreter = env.interpreter.(*EVMInterpreter)
|
||||||
|
)
|
||||||
|
result := make([]TwoOperandTestcase, len(args))
|
||||||
|
for i, param := range args {
|
||||||
|
x := new(uint256.Int).SetBytes(common.Hex2Bytes(param.x))
|
||||||
|
y := new(uint256.Int).SetBytes(common.Hex2Bytes(param.y))
|
||||||
|
stack.push(x)
|
||||||
|
stack.push(y)
|
||||||
|
_, err := opFn(&pc, interpreter, &ScopeContext{nil, stack, nil})
|
||||||
|
if err != nil {
|
||||||
|
log.Fatalln(err)
|
||||||
|
}
|
||||||
|
actual := stack.pop()
|
||||||
|
result[i] = TwoOperandTestcase{param.x, param.y, fmt.Sprintf("%064x", actual)}
|
||||||
|
}
|
||||||
|
return result
|
||||||
|
}
|
||||||
|
|
||||||
for name, method := range twoOpMethods {
|
for name, method := range twoOpMethods {
|
||||||
data, err := json.Marshal(getResult(commonParams, method))
|
data, err := json.Marshal(getResult(commonParams, method))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue