|
|
@ -28,6 +28,7 @@ import ( |
|
|
|
"io/ioutil" |
|
|
|
"io/ioutil" |
|
|
|
"log" |
|
|
|
"log" |
|
|
|
"os" |
|
|
|
"os" |
|
|
|
|
|
|
|
"strings" |
|
|
|
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/ethdb" |
|
|
|
"github.com/ethereum/go-ethereum/ethdb" |
|
|
|
"github.com/ethereum/go-ethereum/ethutil" |
|
|
|
"github.com/ethereum/go-ethereum/ethutil" |
|
|
@ -126,5 +127,9 @@ func RunVmTest(r io.Reader) (failed int) { |
|
|
|
func main() { |
|
|
|
func main() { |
|
|
|
helper.Logger.SetLogLevel(5) |
|
|
|
helper.Logger.SetLogLevel(5) |
|
|
|
|
|
|
|
|
|
|
|
os.Exit(RunVmTest(os.Stdin)) |
|
|
|
if len(os.Args) > 1 { |
|
|
|
|
|
|
|
os.Exit(RunVmTest(strings.NewReader(os.Args[1]))) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
os.Exit(RunVmTest(os.Stdin)) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|