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

Issue 7193044: all: use t.Skip{,f} (Closed)

Can't Edit
Can't Publish+Mail
Start Review
Created:
12 years, 2 months ago by dave
Modified:
12 years, 1 month ago
Reviewers:
CC:
golang-dev, niemeyer, bradfitz, adg, mikio
Visibility:
Public.

Description

all: use t.Skip{,f} Replace various t.Log{,f} ; return checks with t.Skip{,f}.

Patch Set 1 #

Patch Set 2 : diff -r 5b5399bc3335 https://code.google.com/p/go #

Patch Set 3 : diff -r 5b5399bc3335 https://code.google.com/p/go #

Patch Set 4 : diff -r 5b5399bc3335 https://code.google.com/p/go #

Patch Set 5 : diff -r 5b5399bc3335 https://code.google.com/p/go #

Total comments: 2

Patch Set 6 : diff -r 76dc0d7cec07 https://go.googlecode.com/hg/ #

Unified diffs Side-by-side diffs Delta from patch set Stats (+126 lines, -256 lines) Patch
M src/pkg/archive/zip/zip_test.go View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M src/pkg/compress/flate/deflate_test.go View 1 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/crypto/x509/verify_test.go View 1 2 3 4 5 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/go/types/gcimporter_test.go View 1 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/log/syslog/syslog_test.go View 1 2 3 chunks +7 lines, -16 lines 0 comments Download
M src/pkg/net/dial_test.go View 1 2 3 chunks +3 lines, -6 lines 0 comments Download
M src/pkg/net/dial_windows_test.go View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/net/dialgoogle_test.go View 1 2 2 chunks +4 lines, -8 lines 0 comments Download
M src/pkg/net/file_test.go View 1 2 chunks +2 lines, -4 lines 0 comments Download
M src/pkg/net/http/cgi/host_test.go View 1 2 16 chunks +22 lines, -47 lines 0 comments Download
M src/pkg/net/http/fs_test.go View 1 2 3 chunks +6 lines, -12 lines 0 comments Download
M src/pkg/net/http/transport_test.go View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/net/ipraw_test.go View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M src/pkg/net/lookup_test.go View 1 2 6 chunks +6 lines, -12 lines 0 comments Download
M src/pkg/net/multicast_posix_test.go View 1 2 2 chunks +4 lines, -8 lines 0 comments Download
M src/pkg/net/net_test.go View 1 3 chunks +3 lines, -6 lines 0 comments Download
M src/pkg/net/parse_test.go View 1 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/net/protoconn_test.go View 1 3 chunks +4 lines, -8 lines 0 comments Download
M src/pkg/net/server_test.go View 1 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/net/tcp_test.go View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/net/timeout_test.go View 1 2 9 chunks +10 lines, -20 lines 0 comments Download
M src/pkg/net/udp_test.go View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M src/pkg/net/unicast_posix_test.go View 1 2 3 8 chunks +9 lines, -16 lines 0 comments Download
M src/pkg/os/exec/exec_test.go View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M src/pkg/os/os_test.go View 1 2 2 chunks +2 lines, -4 lines 0 comments Download
M src/pkg/os/path_test.go View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/os/user/user_test.go View 1 2 4 chunks +9 lines, -19 lines 0 comments Download
M src/pkg/regexp/exec_test.go View 1 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/runtime/pprof/pprof_test.go View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/runtime/proc_test.go View 1 2 1 chunk +1 line, -2 lines 0 comments Download
M src/pkg/sync/atomic/atomic_test.go View 1 13 chunks +15 lines, -30 lines 0 comments Download

Messages

Total messages: 8
dave_cheney.net
Hello golang-dev@googlegroups.com, I'd like you to review this change to https://code.google.com/p/go
12 years, 2 months ago (2013-01-23 10:30:51 UTC) #1
dave_cheney.net
On 2013/01/23 10:30:51, dfc wrote: > Hello mailto:golang-dev@googlegroups.com, > > I'd like you to review ...
12 years, 2 months ago (2013-01-23 10:31:36 UTC) #2
niemeyer
https://codereview.appspot.com/7193044/diff/4002/src/pkg/net/dial_test.go File src/pkg/net/dial_test.go (right): https://codereview.appspot.com/7193044/diff/4002/src/pkg/net/dial_test.go#newcode77 src/pkg/net/dial_test.go:77: t.Skipf("skipping test on %q; untested.", runtime.GOOS) While before it ...
12 years, 2 months ago (2013-01-23 15:52:16 UTC) #3
bradfitz
LGTM Thanks for doing this! Great cleanup. The builders are all happy again, so feel ...
12 years, 2 months ago (2013-01-23 17:52:43 UTC) #4
adg
LGTM https://codereview.appspot.com/7193044/diff/4002/src/pkg/net/dial_test.go File src/pkg/net/dial_test.go (right): https://codereview.appspot.com/7193044/diff/4002/src/pkg/net/dial_test.go#newcode77 src/pkg/net/dial_test.go:77: t.Skipf("skipping test on %q; untested.", runtime.GOOS) On 2013/01/23 ...
12 years, 2 months ago (2013-01-23 22:30:54 UTC) #5
dave_cheney.net
Thanks for your kind comments Brad. I'll submit this CL in the next day or ...
12 years, 2 months ago (2013-01-24 01:18:51 UTC) #6
mikio
> I would be grateful to folks who can test this on windows and the ...
12 years, 2 months ago (2013-01-24 02:21:53 UTC) #7
dave_cheney.net
12 years, 2 months ago (2013-01-24 06:32:36 UTC) #8
*** Submitted as https://code.google.com/p/go/source/detail?r=6206c68b2d29 ***

all: use t.Skip{,f}

Replace various t.Log{,f} ; return checks with t.Skip{,f}.

R=golang-dev, n13m3y3r, bradfitz, adg, mikioh.mikioh
CC=golang-dev
https://codereview.appspot.com/7193044
Sign in to reply to this message.

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