aboutsummaryrefslogtreecommitdiff
path: root/tests/expandtest.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/expandtest.rs')
-rw-r--r--tests/expandtest.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/expandtest.rs b/tests/expandtest.rs
index adf8dde..4e08040 100644
--- a/tests/expandtest.rs
+++ b/tests/expandtest.rs
@@ -6,6 +6,8 @@ use std::{
process::{Command, ExitStatus, Stdio},
};
+const PATH: &str = "tests/expand/**/*.rs";
+
#[rustversion::attr(not(nightly), ignore)]
#[test]
fn expandtest() {
@@ -18,12 +20,12 @@ fn expandtest() {
return;
}
- let path = "tests/expand/*/*.rs";
+ let args = &["--all-features"];
if is_ci {
- macrotest::expand_without_refresh(path);
+ macrotest::expand_without_refresh_args(PATH, args);
} else {
env::set_var("MACROTEST", "overwrite");
- macrotest::expand(path);
+ macrotest::expand_args(PATH, args);
}
}