bt_test_harness/lib.rs
1// Copyright 2020 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use zx::MonotonicDuration;
6
7pub mod access;
8pub mod bootstrap;
9pub mod core_realm;
10pub mod emulator;
11pub mod host;
12pub mod host_realm;
13pub mod host_watcher;
14pub mod inspect;
15pub mod low_energy_central;
16pub mod low_energy_peripheral;
17pub mod profile;
18
19// Use a framework-wide timeout of 4 minutes.
20//
21// This time is expected to be:
22// a) sufficient to avoid flakes due to infra or resource contention, except in many standard
23// deviations of unlikeliness
24// b) short enough to still provide useful feedback in those cases where asynchronous operations
25// fail
26// c) short enough to fail before the overall infra-imposed test timeout (currently 5 minutes),
27// so that we can produce specific test-relevant information in the case of failure.
28const TIMEOUT_SECONDS: i64 = 4 * 60;
29
30pub fn timeout_duration() -> MonotonicDuration {
31 MonotonicDuration::from_seconds(TIMEOUT_SECONDS)
32}