blob: f1471ff827aa75ba3172eb1119b55a0358d9557a [file] [log] [blame]
// Copyright 2022 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MOJO_SERVICE_MANAGER_DAEMON_DAEMON_TEST_HELPER_H_
#define MOJO_SERVICE_MANAGER_DAEMON_DAEMON_TEST_HELPER_H_
#include <sysexits.h>
namespace chromeos::mojo_service_manager {
// The exit code for daemon test helper.
enum class DaemonTestHelperResult {
kResetWithOsError = EX__MAX + 1,
kConnectSuccessfully,
};
inline constexpr char kSocketPathSwitch[] = "test-socket-path";
} // namespace chromeos::mojo_service_manager
#endif // MOJO_SERVICE_MANAGER_DAEMON_DAEMON_TEST_HELPER_H_