Skip to content

Commit 9870c44

Browse files
committed
improve GOOS=tamago test coverage
1 parent 710888a commit 9870c44

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/cmd/dist/test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,7 @@ func (t *tester) registerTests() {
887887
t.registerRaceTests()
888888
}
889889

890-
if goos != "android" && !t.iOS() {
890+
if goos != "android" && !t.iOS() && goos != "tamago" {
891891
// Only start multiple test dir shards on builders,
892892
// where they get distributed to multiple machines.
893893
// See issues 20141 and 31834.

src/cmd/internal/testdir/testdir_test.go

-4
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,6 @@ func Test(t *testing.T) {
116116
goExperiment = env.GOEXPERIMENT
117117
goDebug = env.GODEBUG
118118

119-
if goos == "tamago" {
120-
t.Skipf("skipping: unsupported")
121-
}
122-
123119
common := testCommon{
124120
gorootTestDir: filepath.Join(testenv.GOROOT(t), "test"),
125121
runoutputGate: make(chan bool, *runoutputLimit),

0 commit comments

Comments
 (0)