blob: f4f1d32d423049145b757a1c2488746ea05858d0 [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('archivist_benchmarks', () async {
final helper = await PerfTestHelper.make();
await helper.runTestCommand(
(resultsFile) => '/bin/archivist_benchmarks $resultsFile');
}, timeout: Timeout.none);
}