//! Test case generators. //! //! Test case generators take raw, unstructured input from a fuzzer //! (e.g. libFuzzer) and translate that into a structured test case (e.g. a //! valid Wasm binary). //! //! These are generally implementations of the `Arbitrary` trait, or some //! wrapper over an external tool, such that the wrapper implements the //! `Arbitrary` trait for the wrapped external tool. pub mod api; mod async_config; mod codegen_settings; pub mod component_async; mod config; pub mod exception_ops; pub mod gc_ops; mod instance_allocation_strategy; mod memory; mod module; mod pooling_config; mod single_inst_module; mod stacks; mod value; mod wast_test; pub use async_config::AsyncConfig; pub use codegen_settings::CodegenSettings; pub use config::CompilerStrategy; pub use config::{Config, WasmtimeConfig}; pub use exception_ops::ExceptionOps; pub use gc_ops::{limits::GcOpsLimits, ops::GcOps}; pub use instance_allocation_strategy::InstanceAllocationStrategy; pub use memory::{HeapImage, MemoryAccesses, MemoryConfig}; pub use module::ModuleConfig; pub use pooling_config::PoolingAllocationConfig; pub use single_inst_module::SingleInstModule; pub use stacks::Stacks; pub use value::{DiffValue, DiffValueType}; pub use wast_test::WastTest;