mirror of
https://github.com/uutils/findutils.git
synced 2026-06-10 15:48:30 -07:00
19 lines
697 B
Rust
19 lines
697 B
Rust
// Copyright 2017 Google Inc.
|
|
//
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://opensource.org/licenses/MIT.
|
|
|
|
// As this module is included by all the integration tests, any function used
|
|
// in one test but not another can cause a dead code warning.
|
|
#[allow(dead_code)]
|
|
pub mod test_helpers;
|
|
|
|
// Set UUTESTS_BINARY_PATH before any tests run. The value is only used by
|
|
// TestScenario::new() to satisfy its internal setup; tests that need a
|
|
// specific binary pass it explicitly via TestScenario::cmd(BINARY_PATH).
|
|
#[ctor::ctor(unsafe)]
|
|
fn init() {
|
|
std::env::set_var("UUTESTS_BINARY_PATH", env!("CARGO_BIN_EXE_find"));
|
|
}
|