/
githubmirror
/
ripgrep
Обзор
Документация
Войти
/
githubmirror
/
ripgrep
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/tests.rs
25 строк
668 B
Andrew Gallant
flags: disable many flags when indexing is enabled
22 июл 2026, 18:51
22 июл 2026, 18:51
2ed0c00
Код
Авторство
О чём код?
// Macros useful for testing. #[macro_use] mod macros; // Corpora. mod hay; // Utilities for making tests nicer to read and easier to write. mod util; // Tests for ripgrep's handling of binary files. mod binary; // Tests related to most features in ripgrep. If you're adding something new // to ripgrep, tests should probably go in here. mod feature; // Tests ripgrep's indexing feature. #[cfg(feature = "unstable-index")] mod index; // Tests for ripgrep's JSON format. mod json; // Miscellaneous tests grouped in a haphazard manner. Try not to add more. mod misc; // Tests for ripgrep's multiline search support. mod multiline; // Regression tests. mod regression;