pub struct RemoteCopyLibs {
compiler: Compiler,
target: TargetSelection,
}
Expand description
Some test suites are run inside emulators or on remote devices, and most of our test binaries are linked dynamically which means we need to ship the standard library and such to the emulator ahead of time. This step represents this and is a dependency of all test suites.
Most of the time this is a no-op. For some steps such as shipping data to QEMU we have to build our own tools so we’ve got conditional dependencies on those programs as well. Note that the remote test client is built for the build target (us) and the server is built for the target.
Fields§
§compiler: Compiler
§target: TargetSelection
Trait Implementations§
Source§impl Clone for RemoteCopyLibs
impl Clone for RemoteCopyLibs
Source§fn clone(&self) -> RemoteCopyLibs
fn clone(&self) -> RemoteCopyLibs
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for RemoteCopyLibs
impl Debug for RemoteCopyLibs
Source§impl Hash for RemoteCopyLibs
impl Hash for RemoteCopyLibs
Source§impl PartialEq for RemoteCopyLibs
impl PartialEq for RemoteCopyLibs
Source§impl Step for RemoteCopyLibs
impl Step for RemoteCopyLibs
Source§fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>
fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_>
Step
should be run when given specific paths (e.g., x build $path
).Source§const DEFAULT: bool = false
const DEFAULT: bool = false
describe
macro in Builder::get_step_descriptions
. Read moreSource§const ONLY_HOSTS: bool = false
const ONLY_HOSTS: bool = false
Source§fn make_run(_run: RunConfig<'_>)
fn make_run(_run: RunConfig<'_>)
Step
handler when not triggered indirectly by other Step
s using Builder::ensure
.
For example, ./x.py test bootstrap
runs this for test::Bootstrap
. Similarly, ./x.py test
runs it for every step
that is listed by the describe
macro in Builder::get_step_descriptions
.impl Eq for RemoteCopyLibs
impl StructuralPartialEq for RemoteCopyLibs
Auto Trait Implementations§
impl Freeze for RemoteCopyLibs
impl RefUnwindSafe for RemoteCopyLibs
impl Send for RemoteCopyLibs
impl Sync for RemoteCopyLibs
impl Unpin for RemoteCopyLibs
impl UnwindSafe for RemoteCopyLibs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Pointable for T
impl<T> Pointable for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 72 bytes