From f37b4e84eb0b277fa8a95eaba7e5cd00f366b2e3 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Tue, 11 Nov 2014 00:14:31 -0600 Subject: [PATCH] Allow main waddrmgr test to run in parallel. --- waddrmgr/manager_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/waddrmgr/manager_test.go b/waddrmgr/manager_test.go index 2dcf128..f922146 100644 --- a/waddrmgr/manager_test.go +++ b/waddrmgr/manager_test.go @@ -1453,6 +1453,8 @@ func testSync(tc *testContext) bool { // It makes use of a test context because the address manager is persistent and // much of the testing involves having specific state. func TestManager(t *testing.T) { + t.Parallel() + dbName := "mgrtest.bin" _ = os.Remove(dbName) db, mgrNamespace, err := createDbNamespace(dbName)