File tree 6 files changed +6
-5
lines changed
6 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- //go:build go1.19 && !openbsd && !js && !wasip1 && !solaris && !android
5
+ //go:build go1.19 && !openbsd && !js && !wasip1 && !solaris && !android && !illumos
6
6
7
7
package counter
8
8
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- //go:build !go1.19 || openbsd || js || wasip1 || solaris || android
5
+ //go:build !go1.19 || openbsd || js || wasip1 || solaris || android || illumos
6
6
7
7
package counter
8
8
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- //go:build go1.19 && !openbsd && !js && !wasip1 && !solaris && !android && !plan9 && !386
5
+ //go:build go1.19 && !openbsd && !js && !wasip1 && !solaris && !android && !illumos && ! plan9 && !386
6
6
7
7
// countertest provides testing utilities for counters.
8
8
// This package cannot be used except for testing.
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- //go:build !go1.19 || openbsd || js || wasip1 || solaris || android || plan9 || 386
5
+ //go:build !go1.19 || openbsd || js || wasip1 || solaris || android || plan9 || 386 || illumos
6
6
7
7
package countertest
8
8
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- //go:build go1.21 && !openbsd && !js && !wasip1 && !solaris && !android
5
+ //go:build go1.21 && !openbsd && !js && !wasip1 && !solaris && !android && !illumos
6
6
7
7
package countertest
8
8
Original file line number Diff line number Diff line change @@ -124,6 +124,7 @@ const DisabledOnPlatform = false ||
124
124
runtime .GOOS == "openbsd" || // #60614
125
125
runtime .GOOS == "solaris" || // #60968 #60970
126
126
runtime .GOOS == "android" || // #60967
127
+ runtime .GOOS == "illumos" || // #65544
127
128
// These platforms fundamentally can't be supported:
128
129
runtime .GOOS == "js" || // #60971
129
130
runtime .GOOS == "wasip1" || // #60971
You can’t perform that action at this time.
0 commit comments