Searched refs:is_test (Results 1 - 6 of 6) sorted by relevance
/third_party/rust/crates/env_logger/src/fmt/writer/ |
H A D | mod.rs | 131 is_test: bool, 141 is_test: false, 168 pub(crate) fn is_test(&mut self, is_test: bool) -> &mut Self { 169 self.is_test = is_test; 194 WritableTarget::Stderr => BufferWriter::stderr(self.is_test, color_choice), 195 WritableTarget::Stdout => BufferWriter::stdout(self.is_test, color_choice),
|
/third_party/openssl/test/ |
H A D | run_tests.pl | 190 my $is_test = $self->is_test; 191 my $is_ok = $is_test && $self->is_ok; 200 ($is_test, $is_ok) = (1, !$1) 207 } elsif ($is_test) { # result of a test
|
/third_party/rust/crates/env_logger/src/ |
H A D | lib.rs | 184 //! The [`Builder::is_test`] method can be used in unit tests to ensure logs will be captured: 191 //! let _ = env_logger::builder().is_test(true).try_init(); 273 //! [`Builder::is_test`]: struct.Builder.html#method.is_test 776 /// If `is_test` is `true` then the logger will allow the testing framework to 778 pub fn is_test(&mut self, is_test: bool) -> &mut Self { in is_test() functions 779 self.writer.is_test(is_test); in is_test()
|
/third_party/rust/crates/env_logger/examples/ |
H A D | in_tests.rs | 26 .is_test(true) in init_logger()
|
/third_party/backends/backend/ |
H A D | mustek_usb_low.h | 255 usb_low_set_test_sram_mode (ma1017 * chip, SANE_Bool is_test);
|
H A D | mustek_usb_low.c | 351 usb_low_set_test_sram_mode (ma1017 * chip, SANE_Bool is_test) in usb_low_set_test_sram_mode() argument 372 if (is_test) in usb_low_set_test_sram_mode()
|
Completed in 7 milliseconds