fix node/addrbook test; made build task quieter

This commit is contained in:
Jae Kwon 2015-07-22 06:16:54 -07:00
parent 5f0cf31eda
commit 7441e322d0
3 changed files with 2 additions and 12 deletions

View File

@ -28,7 +28,7 @@ build_race:
test: build
-rm -rf ~/.tendermint_test_bak
-mv ~/.tendermint_test ~/.tendermint_test_bak
-mv ~/.tendermint_test ~/.tendermint_test_bak && true
go test github.com/tendermint/tendermint/...
draw_deps:

View File

@ -31,7 +31,6 @@ func initTMRoot(rootDir string) {
configFilePath := path.Join(rootDir, "config.toml")
genesisFilePath := path.Join(rootDir, "genesis.json")
privValFilePath := path.Join(rootDir, "priv_validator.json")
// Write default config file if missing.
if !FileExists(configFilePath) {
@ -42,9 +41,6 @@ func initTMRoot(rootDir string) {
if !FileExists(genesisFilePath) {
MustWriteFile(genesisFilePath, []byte(defaultGenesis))
}
if !FileExists(privValFilePath) {
MustWriteFile(privValFilePath, []byte(privValFilePath))
}
}
func GetConfig(rootDir string) cfg.Config {

View File

@ -4,16 +4,10 @@ import (
"testing"
"time"
cfg "github.com/tendermint/tendermint/config"
tmcfg "github.com/tendermint/tendermint/config/tendermint"
_ "github.com/tendermint/tendermint/config/tendermint_test"
"github.com/tendermint/tendermint/p2p"
)
func init() {
config := tmcfg.GetConfig("")
cfg.ApplyConfig(config)
}
func TestNodeStartStop(t *testing.T) {
// Create & start node
n := NewNode()