bt_test_harness/lib.rs
// 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.
use zx::MonotonicDuration;
pub mod access;
pub mod bootstrap;
pub mod core_realm;
pub mod emulator;
pub mod host;
pub mod host_realm;
pub mod host_watcher;
pub mod inspect;
pub mod low_energy_central;
pub mod low_energy_peripheral;
pub mod profile;
// Use a framework-wide timeout of 4 minutes.
//
// This time is expected to be:
// a) sufficient to avoid flakes due to infra or resource contention, except in many standard
// deviations of unlikeliness
// b) short enough to still provide useful feedback in those cases where asynchronous operations
// fail
// c) short enough to fail before the overall infra-imposed test timeout (currently 5 minutes),
// so that we can produce specific test-relevant information in the case of failure.
const TIMEOUT_SECONDS: i64 = 4 * 60;
pub fn timeout_duration() -> MonotonicDuration {
MonotonicDuration::from_seconds(TIMEOUT_SECONDS)
}