From 7e921b852daec9dca07b828d9e0a4a33eff0d06d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 16 Jul 2019 12:41:37 +0200 Subject: 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. --- dashboard/app/empty_test.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 dashboard/app/empty_test.go (limited to 'dashboard') 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) { +} -- cgit mrf-deployment