summary refs log tree commit diff
path: root/src/libregex/test/mod.rs
AgeCommit message (Collapse)AuthorLines
2014-06-09Use phase(plugin) in other cratesKeegan McAllister-1/+1
2014-05-25Change regex! macro to expand to a constexpr, allowing to put it in a staticMarvin Löbel-0/+3
2014-04-25Tests for dynamic regexes will now run during 'check-stage2'.Andrew Gallant-5/+15
Before, tests for dynamic regexes ran during stage1 and tests for native regexes ran during stage2. But the buildbots don't test stage1, so now both dynamic and native tests are run during stage2. Closes #13740.
2014-04-25Add a regex crate to the Rust distribution.Andrew Gallant-0/+29
Also adds a regex_macros crate, which provides natively compiled regular expressions with a syntax extension. Closes #3591. RFC: 0007-regexps