LEFT | RIGHT |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package sql | 5 package sql |
6 | 6 |
7 import ( | 7 import ( |
8 "database/sql/driver" | 8 "database/sql/driver" |
9 "errors" | 9 "errors" |
10 "fmt" | 10 "fmt" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 // their statements first, then we can safely | 87 // their statements first, then we can safely |
88 // verify this is always zero here, and any | 88 // verify this is always zero here, and any |
89 // other value is a leak. | 89 // other value is a leak. |
90 t.Errorf("while closing db, freeConn %d/%d had %d open s
tmts; want 0", i, db.freeConn.Len(), n) | 90 t.Errorf("while closing db, freeConn %d/%d had %d open s
tmts; want 0", i, db.freeConn.Len(), n) |
91 } | 91 } |
92 } | 92 } |
93 err := db.Close() | 93 err := db.Close() |
94 if err != nil { | 94 if err != nil { |
95 t.Fatalf("error closing DB: %v", err) | 95 t.Fatalf("error closing DB: %v", err) |
96 } | 96 } |
97 » runtime.GC() | 97 » db.mu.Lock() |
98 » if db.numOpen != 0 { | 98 » count := db.numOpen |
| 99 » db.mu.Unlock() |
| 100 » if count != 0 { |
99 t.Fatalf("%d connections still open after closing DB", db.numOpe
n) | 101 t.Fatalf("%d connections still open after closing DB", db.numOpe
n) |
100 } | 102 } |
101 } | 103 } |
102 | 104 |
103 // numPrepares assumes that db has exactly 1 idle conn and returns | 105 // numPrepares assumes that db has exactly 1 idle conn and returns |
104 // its count of calls to Prepare | 106 // its count of calls to Prepare |
105 func numPrepares(t *testing.T, db *DB) int { | 107 func numPrepares(t *testing.T, db *DB) int { |
106 if n := db.freeConn.Len(); n != 1 { | 108 if n := db.freeConn.Len(); n != 1 { |
107 t.Fatalf("free conns = %d; want 1", n) | 109 t.Fatalf("free conns = %d; want 1", n) |
108 } | 110 } |
(...skipping 1622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1731 } | 1733 } |
1732 } | 1734 } |
1733 | 1735 |
1734 func BenchmarkConcurrentRandom(b *testing.B) { | 1736 func BenchmarkConcurrentRandom(b *testing.B) { |
1735 b.ReportAllocs() | 1737 b.ReportAllocs() |
1736 ct := new(concurrentRandomTest) | 1738 ct := new(concurrentRandomTest) |
1737 for i := 0; i < b.N; i++ { | 1739 for i := 0; i < b.N; i++ { |
1738 doConcurrentTest(b, ct) | 1740 doConcurrentTest(b, ct) |
1739 } | 1741 } |
1740 } | 1742 } |
LEFT | RIGHT |