good morning!!!!

Skip to content
Snippets Groups Projects
Commit 585f259b authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Support input from args

parent c8a4c04b
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@ import (
"io/ioutil"
"log"
"os"
"strings"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/ethutil"
......@@ -126,5 +127,9 @@ func RunVmTest(r io.Reader) (failed int) {
func main() {
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))
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment