blob: a8751d8d0febbddb4cdc8417f9ab08920200b3aa [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('/bin/fidlc_microbenchmarks', () async {
final helper = await PerfTestHelper.make();
await helper.runTestComponent(
packageName: 'fidlc_microbenchmarks',
componentName: 'fidlc_microbenchmarks.cm',
commandArgs: '-p --quiet --out ${PerfTestHelper.componentOutputPath}');
}, timeout: Timeout.none);
}