blob: 4df2f6282f2f5b2f8c4effdb21d5e4fb229ab30d [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.
// TODO(https://fxbug.dev/84961): Fix null safety and remove this language version.
// @dart=2.9
import 'package:test/test.dart';
import 'helpers.dart';
void main() {
enableLoggingOutput();
test('archivist_logging_benchmarks', () async {
final helper = await PerfTestHelper.make();
await helper.runTestComponent(
packageName: 'archivist-logging-benchmarks',
componentName: 'archivist-logging-benchmarks.cm',
commandArgs: PerfTestHelper.componentOutputPath);
}, timeout: Timeout.none);
test('archivist_formatter_benchmarks', () async {
final helper = await PerfTestHelper.make();
await helper.runTestComponent(
packageName: 'archivist-formatter-benchmarks',
componentName: 'archivist-formatter-benchmarks.cm',
commandArgs: PerfTestHelper.componentOutputPath);
}, timeout: Timeout.none);
}