aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2019-07-16 12:41:37 +0200
committerDmitry Vyukov <dvyukov@google.com>2019-07-16 12:44:02 +0200
commit7e921b852daec9dca07b828d9e0a4a33eff0d06d (patch)
treed8f0dd1de072bb5716c9805b1c627e78fd899efa /dashboard
parentf27c4411ef465f3cc8c1615ed7e90d522314ac66 (diff)
dashboard/app: add an empty test file
blaze+tricoder fail when all test files are excluded by tags. Work around the bug by adding an empty test file.
Diffstat (limited to 'dashboard')
-rw-r--r--dashboard/app/empty_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/dashboard/app/empty_test.go b/dashboard/app/empty_test.go
new file mode 100644
index 000000000..80096031b
--- /dev/null
+++ b/dashboard/app/empty_test.go
@@ -0,0 +1,13 @@
+// Copyright 2019 syzkaller project authors. All rights reserved.
+// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
+
+package dash
+
+import (
+ "testing"
+)
+
+// blaze+tricoder fail when all test files are excluded by tags.
+// Work around the bug by adding an empty test file.
+func TestEmpty(t *testing.T) {
+}