Home
last modified time | relevance | path

Searched refs:test_lcp (Results 1 – 1 of 1) sorted by relevance

/third_party/rust/crates/regex/regex-syntax/src/hir/literal/
Dmod.rs1621 macro_rules! test_lcp { macro
1639 test_lcp!(lcp1, vec!["a"], "a");
1640 test_lcp!(lcp2, vec![], "");
1641 test_lcp!(lcp3, vec!["a", "b"], "");
1642 test_lcp!(lcp4, vec!["ab", "ab"], "ab");
1643 test_lcp!(lcp5, vec!["ab", "a"], "a");
1644 test_lcp!(lcp6, vec!["a", "ab"], "a");
1645 test_lcp!(lcp7, vec!["ab", "b"], "");
1646 test_lcp!(lcp8, vec!["b", "ab"], "");
1647 test_lcp!(lcp9, vec!["foobar", "foobaz"], "fooba");
[all …]