blob: 2706b377eca356554492173d49a761c4539bc531 [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.audio.mixer', () async {
final helper = await PerfTestHelper.make();
await helper.runTestCommand((resultsFile) =>
'/bin/audio_mixer_profiler --perftest-json=$resultsFile');
}, timeout: Timeout.none);
}