TestFailure in rustdoc::doctest - Rust (original) (raw)
enum TestFailure {
CompileError,
UnexpectedCompilePass,
MissingErrorCodes(Vec<String>),
ExecutionError(Error),
ExecutionFailure(Output),
UnexpectedRunPass,
}
Expand description
Documentation test failure modes.
The test failed to compile.
The test is marked compile_fail
but compiled successfully.
The test failed to compile (as expected) but the compiler output did not contain all expected error codes.
The test binary was unable to be executed.
The test binary exited with a non-zero exit code.
This typically means an assertion in the test failed or another form of panic occurred.
The test is marked should_panic
but the test binary executed successfully.
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: 56 bytes
Size for each variant:
CompileError
: 0 bytesUnexpectedCompilePass
: 0 bytesMissingErrorCodes
: 32 bytesExecutionError
: 16 bytesExecutionFailure
: 56 bytesUnexpectedRunPass
: 0 bytes