diff options
| author | Andrew Gallant <jamslam@gmail.com> | 2014-04-25 17:28:05 -0400 |
|---|---|---|
| committer | Andrew Gallant <jamslam@gmail.com> | 2014-04-25 17:28:05 -0400 |
| commit | 34c88ef4d6bf13d06ee469c4cc4b18d64a9c83f0 (patch) | |
| tree | c7a53b8114bacc8acaea07e4b7136ebbafecae66 | |
| parent | 6c3bdbe2e45739a5396316392ae3eb8c1d7a7434 (diff) | |
| download | rust-34c88ef4d6bf13d06ee469c4cc4b18d64a9c83f0.tar.gz rust-34c88ef4d6bf13d06ee469c4cc4b18d64a9c83f0.zip | |
Tests for dynamic regexes will now run during 'check-stage2'.
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.
| -rw-r--r-- | src/libregex/test/mod.rs | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/libregex/test/mod.rs b/src/libregex/test/mod.rs index 9386e17e920..a4c3a838a2b 100644 --- a/src/libregex/test/mod.rs +++ b/src/libregex/test/mod.rs @@ -12,9 +12,17 @@ #[phase(syntax)] extern crate regex_macros; -// Dirty hack: During stage1, test dynamic regexs. For stage2, we test -// native regexs. -#[cfg(stage1)] +#[cfg(not(stage1))] +#[path = "bench.rs"] +mod native_bench; + +#[cfg(not(stage1))] +#[path = "tests.rs"] +mod native_tests; + +// Due to macro scoping rules, this definition only applies for the modules +// defined below. Effectively, it allows us to use the same tests for both +// native and dynamic regexes. macro_rules! regex( ($re:expr) => ( match ::regex::Regex::new($re) { @@ -24,6 +32,8 @@ macro_rules! regex( ); ) -mod bench; -mod tests; +#[path = "bench.rs"] +mod dynamic_bench; +#[path = "tests.rs"] +mod dynamic_tests; |
