]> git.lizzy.rs Git - rust.git/commitdiff
Tests for dynamic regexes will now run during 'check-stage2'.
authorAndrew Gallant <jamslam@gmail.com>
Fri, 25 Apr 2014 21:28:05 +0000 (17:28 -0400)
committerAndrew Gallant <jamslam@gmail.com>
Fri, 25 Apr 2014 21:28:05 +0000 (17:28 -0400)
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.

src/libregex/test/mod.rs

index 9386e17e92088cd065e10fd73cc3deb587319ead..a4c3a838a2b704179fba0a108ea9d68f9dd66325 100644 (file)
 #[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;