aboutsummaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2021-03-02 10:16:26 -0800
committerColin Cross <ccross@android.com>2021-03-02 12:26:14 -0800
commit6cb1128b541240a2320608e7bdf96a81621d1944 (patch)
treec5c0a508ba8743a58a926fe998cd01d65a0c7982 /ui
parent2807f0047b213d6725bed98082d45d7445f69699 (diff)
downloadsoong-6cb1128b541240a2320608e7bdf96a81621d1944.tar.gz
Disable TestSendLog on the buildbots
TestSendLog sometimes hangs on the buildbot, although it has never been reproduced locally. The cause appears to be a unix domain packet that was sent but never received. Skip the test in short mode for now, which will leave it manually runnable but not run it as part of the build. Fixes: 120596545 Test: m nothing Change-Id: I3e6bc9b5f1d9c15dc9a7294d98cbd917d0637c44
Diffstat (limited to 'ui')
-rw-r--r--ui/build/paths/logs_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/build/paths/logs_test.go b/ui/build/paths/logs_test.go
index 3b1005fb5..067f3f3fe 100644
--- a/ui/build/paths/logs_test.go
+++ b/ui/build/paths/logs_test.go
@@ -26,6 +26,9 @@ import (
)
func TestSendLog(t *testing.T) {
+ if testing.Short() {
+ t.Skip("skipping in short mode, sometimes hangs")
+ }
t.Run("Short name", func(t *testing.T) {
d, err := ioutil.TempDir("", "s")
if err != nil {