Lines Matching refs:input
115 let (mut input, input_path) = NamedTempFile::new()?.into_parts(); in test_successful_compile()
116 input.write_all( in test_successful_compile()
119 drop(input); in test_successful_compile()
147 let (mut input, input_path) = NamedTempFile::new()?.into_parts(); in test_x64_flags_compile()
148 input.write_all("(module)".as_bytes())?; in test_x64_flags_compile()
149 drop(input); in test_x64_flags_compile()
184 let (mut input, input_path) = NamedTempFile::new()?.into_parts(); in test_aarch64_flags_compile()
185 input.write_all("(module)".as_bytes())?; in test_aarch64_flags_compile()
186 drop(input); in test_aarch64_flags_compile()
213 let (mut input, input_path) = NamedTempFile::new()?.into_parts(); in test_unsupported_flags_compile()
214 input.write_all("(module)".as_bytes())?; in test_unsupported_flags_compile()
215 drop(input); in test_unsupported_flags_compile()
240 let (mut input, input_path) = NamedTempFile::new()?.into_parts(); in test_x64_presets_compile()
241 input.write_all("(module)".as_bytes())?; in test_x64_presets_compile()
242 drop(input); in test_x64_presets_compile()