blob: f7ebc9ccef7476984d1df365a849c803f2331d23 [file] [log] [blame]
// Copyright 2018 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package meta
import (
"context"
"chromiumos/tast/testing"
)
func init() {
testing.AddTest(&testing.Test{
Func: LocalPanic,
Desc: "Helper test that panics",
Contacts: []string{"tast-owners@google.com"},
// This test is called by remote tests in the meta package.
Attr: []string{"disabled"},
})
}
func LocalPanic(ctx context.Context, s *testing.State) {
panic("intentionally panicking")
}