We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a53cb3 commit cb66e4dCopy full SHA for cb66e4d
src/testing/testing.go
@@ -644,6 +644,11 @@ func Short() bool {
644
panic("testing: Short called before Parse")
645
}
646
647
+ // -test.short is forced due to lack of os.Args support
648
+ if runtime.GOOS == "tamago" {
649
+ return true
650
+ }
651
+
652
return *short
653
654
src/time/tick_test.go
@@ -151,7 +151,7 @@ func TestTickerResetLtZeroDuration(t *testing.T) {
151
152
153
func TestLongAdjustTimers(t *testing.T) {
154
- if runtime.GOOS == "android" || runtime.GOOS == "ios" {
+ if runtime.GOOS == "android" || runtime.GOOS == "ios" || runtime.GOOS == "tamago" {
155
t.Skipf("skipping on %s - too slow", runtime.GOOS)
156
157
t.Parallel()
0 commit comments