pub const TestOptions = struct
pub const TestOptions = struct { name: []const u8 = "test", root_module: *Module, max_rss: u64 = 0, filters: []const []const u8 = &.{}, test_runner: ?Step.Compile.TestRunner = null, use_llvm: ?bool = null, use_lld: ?bool = null, zig_lib_dir: ?LazyPath = null, /// Emits an object file instead of a test binary. /// The object must be linked separately. /// Usually used in conjunction with a custom `test_runner`. emit_object: bool = false, }