blob: 1218383273738cd29405e3f4453d5c5a0ef782d5 [file] [log] [blame] [edit]
// 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.
library fuchsia.hardware.mediacodec;
using zx;
/// This protocol is used by a client to run the amlogic video decoder tests.
protocol Tester {
/// Takes a directory handle from the client and installs that as /tmp in the driver so that debugging files can be written there.
SetOutputDirectoryHandle(resource struct {
handle zx.Handle:CHANNEL;
});
/// Runs the full suite of tests. Test output will go to klog.
RunTests() -> (struct {
result zx.Status;
});
};