agent: fix TestRetryJoinFail

This commit is contained in:
Frank Schroeder 2017-10-24 17:13:37 +02:00
parent 8defdddf31
commit f398fe83b7
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
1 changed files with 3 additions and 8 deletions

View File

@ -130,21 +130,16 @@ func TestRetryJoin(t *testing.T) {
func TestRetryJoinFail(t *testing.T) {
t.Parallel()
t.Skip("fs: skipping tests that use cmd.Run until signal handling is fixed")
cfg := agent.TestConfig()
tmpDir := testutil.TempDir(t, "consul")
defer os.RemoveAll(tmpDir)
shutdownCh := make(chan struct{})
defer close(shutdownCh)
ui := cli.NewMockUi()
cmd := New(ui, "", "", "", "", shutdownCh)
cmd := New(ui, "", "", "", "", nil)
args := []string{
"-bind", cfg.BindAddr.String(),
"-bind", "127.0.0.1",
"-data-dir", tmpDir,
"-retry-join", cfg.SerfBindAddrLAN.String(),
"-retry-join", "127.0.0.1:99",
"-retry-max", "1",
"-retry-interval", "10ms",
}