blob: 3bdc15f1a5d221905e2416ea07b44e2ffb7214ca [file] [log] [blame]
// Copyright 2018 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.
#ifndef LIB_COMPONENT_CPP_TESTING_TERMINATION_RESULT_H_
#define LIB_COMPONENT_CPP_TESTING_TERMINATION_RESULT_H_
namespace component {
namespace testing {
// Combines the return code and termination reason from a Component termination.
struct TerminationResult {
int64_t return_code;
fuchsia::sys::TerminationReason reason;
};
} // namespace testing
} // namespace component
#endif // LIB_COMPONENT_CPP_TESTING_TERMINATION_RESULT_H_