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

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

Issue 12751045: code review 12751045: encoding/xml: support generic encoding interfaces (Closed)
Left Patch Set: diff -r 7b9e2c29bf14 https://code.google.com/p/go/ Created 10 years, 7 months ago
Right Patch Set: diff -r 0a4959c5402a 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/encoding/xml/xml.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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
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"},
199 "encoding/gob": {"L4", "OS", "encoding"}, 199 "encoding/gob": {"L4", "OS", "encoding"},
200 "encoding/hex": {"L4"}, 200 "encoding/hex": {"L4"},
201 "encoding/json": {"L4", "encoding"}, 201 "encoding/json": {"L4", "encoding"},
202 "encoding/pem": {"L4"}, 202 "encoding/pem": {"L4"},
203 » "encoding/xml": {"L4"}, 203 » "encoding/xml": {"L4", "encoding"},
204 "flag": {"L4", "OS"}, 204 "flag": {"L4", "OS"},
205 "go/build": {"L4", "OS", "GOPARSER"}, 205 "go/build": {"L4", "OS", "GOPARSER"},
206 "html": {"L4"}, 206 "html": {"L4"},
207 "image/draw": {"L4"}, 207 "image/draw": {"L4"},
208 "image/gif": {"L4", "compress/lzw", "image/draw"}, 208 "image/gif": {"L4", "compress/lzw", "image/draw"},
209 "image/jpeg": {"L4"}, 209 "image/jpeg": {"L4"},
210 "image/png": {"L4", "compress/zlib"}, 210 "image/png": {"L4", "compress/zlib"},
211 "index/suffixarray": {"L4", "regexp"}, 211 "index/suffixarray": {"L4", "regexp"},
212 "math/big": {"L4"}, 212 "math/big": {"L4"},
213 "mime": {"L4", "OS", "syscall"}, 213 "mime": {"L4", "OS", "syscall"},
(...skipping 204 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