func fatal(t *testing.T, err error) { if !DEAD { tests.TestsTearDown() DEAD = true panic(err) } }
func TestMain(m *testing.M) { var logLevel log.LogLevel logLevel = 0 // logLevel = 1 // logLevel = 3 log.SetLoggers(logLevel, os.Stdout, os.Stderr) if os.Getenv("TEST_IN_CIRCLE") == "true" { erisDir = os.Getenv("HOME") } file = path.Join(erisDir, "temp") tests.IfExit(testsInit()) exitCode := m.Run() if os.Getenv("TEST_IN_CIRCLE") != "true" { testKillIPFS(nil) tests.IfExit(tests.TestsTearDown()) } os.Exit(exitCode) }
func TestMain(m *testing.M) { log.SetFormatter(logger.ErisFormatter{}) log.SetLevel(log.ErrorLevel) // log.SetLevel(log.InfoLevel) // log.SetLevel(log.DebugLevel) if os.Getenv("TEST_IN_CIRCLE") == "true" { erisDir = os.Getenv("HOME") } // Prevent CLI from starting IPFS. os.Setenv("ERIS_SKIP_ENSURE", "true") file = filepath.Join(erisDir, "temp") tests.IfExit(testsInit()) exitCode := m.Run() if os.Getenv("TEST_IN_CIRCLE") != "true" { tests.IfExit(tests.TestsTearDown()) } os.Exit(exitCode) }
func fatal(t *testing.T, err error) { if !DEAD { log.Flush() testKillIPFS(t) tests.TestsTearDown() DEAD = true panic(err) } }
func TestMain(m *testing.M) { log.SetFormatter(logger.ErisFormatter{}) log.SetLevel(log.ErrorLevel) // log.SetLevel(log.InfoLevel) // log.SetLevel(log.DebugLevel) tests.IfExit(testsInit()) exitCode := m.Run() if os.Getenv("TEST_IN_CIRCLE") != "true" { tests.IfExit(tests.TestsTearDown()) } os.Exit(exitCode) }
func TestMain(m *testing.M) { var logLevel log.LogLevel logLevel = 0 // logLevel = 1 // logLevel = 3 log.SetLoggers(logLevel, os.Stdout, os.Stderr) tests.IfExit(testsInit()) exitCode := m.Run() if os.Getenv("TEST_IN_CIRCLE") != "true" { tests.IfExit(tests.TestsTearDown()) } os.Exit(exitCode) }
func TestMain(m *testing.M) { log.SetFormatter(logger.ErisFormatter{}) log.SetLevel(log.ErrorLevel) // log.SetLevel(log.InfoLevel) // log.SetLevel(log.DebugLevel) tests.IfExit(testsInit()) // Prevent CLI from starting IPFS. os.Setenv("ERIS_SKIP_ENSURE", "true") exitCode := m.Run() log.Info("Tearing tests down") if os.Getenv("TEST_IN_CIRCLE") != "true" { tests.IfExit(tests.TestsTearDown()) } os.Exit(exitCode) }