From c7db32037e07dee75807671cc659690e17ec29e8 Mon Sep 17 00:00:00 2001 From: Erik Arvidsson Date: Wed, 25 Jan 2017 15:09:16 -0800 Subject: [PATCH] Moar logging for integrations test (#3113) --- go/util/integrationtest/integration_test_suite.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/go/util/integrationtest/integration_test_suite.go b/go/util/integrationtest/integration_test_suite.go index 22a67426cb..44a3fd3ddb 100644 --- a/go/util/integrationtest/integration_test_suite.go +++ b/go/util/integrationtest/integration_test_suite.go @@ -61,7 +61,9 @@ type IntegrationSuite struct { func Run(t *testing.T, s IntegrationSuiteInterface) { s.SetT(t) + fmt.Println("== Calling npmInstall") s.npmInstall() + fmt.Println("== Done npmInstall") cs := chunks.NewMemoryStore() s.setCs(cs) @@ -69,7 +71,9 @@ func Run(t *testing.T, s IntegrationSuiteInterface) { s.Setup() } + fmt.Println("== Calling runServer") runServer(s, cs) + fmt.Println("== Done runServer") if s, ok := s.(TeardownSuite); ok { s.Teardown() @@ -80,7 +84,9 @@ func runServer(s IntegrationSuiteInterface, cs chunks.ChunkStore) { server := datas.NewRemoteDatabaseServer(cs, 0) server.Ready = func() { s.setPort(server.Port()) + fmt.Println("== Calling runNode") runNode(s) + fmt.Println("== Done runNode") server.Stop() } server.Run()