Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2047)

Delta Between Two Patch Sets: src/pkg/go/build/deps_test.go

Issue 10726044: database/sql: add SetMaxOpenConns (Closed)
Left Patch Set: Created 10 years, 9 months ago
Right Patch Set: diff -r 6939fe74ea98 https://code.google.com/p/go Created 10 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/database/sql/sql_test.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2012 The Go Authors. All rights reserved. 1 // Copyright 2012 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 // This file exercises the import parser but also checks that 5 // This file exercises the import parser but also checks that
6 // some low-level packages do not have new dependencies added. 6 // some low-level packages do not have new dependencies added.
7 7
8 package build 8 package build
9 9
10 import ( 10 import (
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 }, 178 },
179 179
180 // One of a kind. 180 // One of a kind.
181 "archive/tar": {"L4", "OS", "syscall"}, 181 "archive/tar": {"L4", "OS", "syscall"},
182 "archive/zip": {"L4", "OS", "compress/flate"}, 182 "archive/zip": {"L4", "OS", "compress/flate"},
183 "compress/bzip2": {"L4"}, 183 "compress/bzip2": {"L4"},
184 "compress/flate": {"L4"}, 184 "compress/flate": {"L4"},
185 "compress/gzip": {"L4", "compress/flate"}, 185 "compress/gzip": {"L4", "compress/flate"},
186 "compress/lzw": {"L4"}, 186 "compress/lzw": {"L4"},
187 "compress/zlib": {"L4", "compress/flate"}, 187 "compress/zlib": {"L4", "compress/flate"},
188 » "database/sql": {"L4", "database/sql/driver"}, 188 » "database/sql": {"L4", "container/list", "database/sql/driver"},
189 "database/sql/driver": {"L4", "time"}, 189 "database/sql/driver": {"L4", "time"},
190 "debug/dwarf": {"L4"}, 190 "debug/dwarf": {"L4"},
191 "debug/elf": {"L4", "OS", "debug/dwarf"}, 191 "debug/elf": {"L4", "OS", "debug/dwarf"},
192 "debug/gosym": {"L4"}, 192 "debug/gosym": {"L4"},
193 "debug/macho": {"L4", "OS", "debug/dwarf"}, 193 "debug/macho": {"L4", "OS", "debug/dwarf"},
194 "debug/pe": {"L4", "OS", "debug/dwarf"}, 194 "debug/pe": {"L4", "OS", "debug/dwarf"},
195 "encoding": {"L4"}, 195 "encoding": {"L4"},
196 "encoding/ascii85": {"L4"}, 196 "encoding/ascii85": {"L4"},
197 "encoding/asn1": {"L4", "math/big"}, 197 "encoding/asn1": {"L4", "math/big"},
198 "encoding/csv": {"L4"}, 198 "encoding/csv": {"L4"},
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 } 418 }
419 419
420 for _, ctxt.GOOS = range geese { 420 for _, ctxt.GOOS = range geese {
421 for _, ctxt.GOARCH = range goarches { 421 for _, ctxt.GOARCH = range goarches {
422 for _, ctxt.CgoEnabled = range bools { 422 for _, ctxt.CgoEnabled = range bools {
423 test(false) 423 test(false)
424 } 424 }
425 } 425 }
426 } 426 }
427 } 427 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b