blob: a6ea7e39cf728977946e905813931d3015a68f8b [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:test/test.dart';
import 'helpers.dart';
void main() {
enableLoggingOutput();
test('fuchsia.kernel.boot', () async {
final helper = await PerfTestHelper.make();
await helper
.runTestCommand((resultsFile) => '/bin/kernel-boot-stats $resultsFile');
}, timeout: Timeout.none);
}