Support input from args
This commit is contained in:
parent
c8a4c04b36
commit
585f259b63
|
@ -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)
|
||||||
|
|
||||||
|
if len(os.Args) > 1 {
|
||||||
|
os.Exit(RunVmTest(strings.NewReader(os.Args[1])))
|
||||||
|
} else {
|
||||||
os.Exit(RunVmTest(os.Stdin))
|
os.Exit(RunVmTest(os.Stdin))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue