1#![warn(unreachable_pub)]
8
9mod command;
10mod macros;
11mod util;
12
13pub mod artifact_names;
14pub mod assertion_helpers;
15pub mod diff;
16pub mod env;
17pub mod external_deps;
18pub mod linker;
19pub mod path_helpers;
20pub mod run;
21pub mod scoped_run;
22pub mod string;
23pub mod symbols;
24pub mod targets;
25
26mod fs;
29
30pub mod rfs {
33 pub use crate::fs::*;
34}
35
36pub use {bstr, gimli, libc, object, regex, serde_json, similar, wasmparser};
38
39pub use crate::artifact_names::{
41 bin_name, dynamic_lib_extension, dynamic_lib_name, msvc_import_dynamic_lib_name, rust_lib_name,
42 static_lib_name,
43};
44pub use crate::assertion_helpers::{
45 assert_contains, assert_contains_regex, assert_count_is, assert_dirs_are_equal, assert_equals,
46 assert_not_contains, assert_not_contains_regex,
47};
48pub use crate::diff::{Diff, diff};
52pub use crate::env::{env_var, env_var_os, set_current_dir};
54pub use crate::external_deps::c_build::{
55 build_native_dynamic_lib, build_native_static_lib, build_native_static_lib_cxx,
56 build_native_static_lib_optimized,
57};
58pub use crate::external_deps::c_cxx_compiler::{
60 Cc, Gcc, cc, cxx, extra_c_flags, extra_cxx_flags, extra_linker_flags, gcc,
61};
62pub use crate::external_deps::cargo::cargo;
63pub use crate::external_deps::clang::{Clang, clang};
64pub use crate::external_deps::htmldocck::htmldocck;
65pub use crate::external_deps::llvm::{
66 self, LlvmAr, LlvmBcanalyzer, LlvmDis, LlvmDwarfdump, LlvmFilecheck, LlvmNm, LlvmObjcopy,
67 LlvmObjdump, LlvmProfdata, LlvmReadobj, llvm_ar, llvm_as, llvm_bcanalyzer, llvm_dis,
68 llvm_dwarfdump, llvm_filecheck, llvm_nm, llvm_objcopy, llvm_objdump, llvm_profdata,
69 llvm_readobj,
70};
71pub use crate::external_deps::python::python_command;
72pub use crate::external_deps::rustc::{self, Rustc, bare_rustc, rustc, rustc_path};
73pub use crate::external_deps::rustdoc::{Rustdoc, bare_rustdoc, rustdoc};
74pub use crate::path_helpers::{
76 build_root, cwd, filename_contains, filename_not_in_denylist, has_extension, has_prefix,
77 has_suffix, not_contains, path, shallow_find_directories, shallow_find_files, source_root,
78};
79pub use crate::run::{cmd, run, run_fail, run_with_args};
81pub use crate::scoped_run::{run_in_tmpdir, test_while_readonly};
83pub use crate::string::{
84 count_regex_matches_in_files_with_extension, invalid_utf8_contains, invalid_utf8_not_contains,
85};
86pub use crate::targets::{
88 apple_os, is_aix, is_arm64ec, is_darwin, is_win7, is_windows, is_windows_gnu, is_windows_msvc,
89 llvm_components_contain, target, uname,
90};