Skip to content

Commit 37d6809

Browse files
Add ui tests for --env option
1 parent 486e55e commit 37d6809

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// run-pass
2+
// rustc-env:MY_VAR=tadam
3+
// compile-flags: --env MY_VAR=123abc -Zunstable-options
4+
5+
// This test ensures that variables provided with `--env` take precedence over
6+
// variables from environment.
7+
fn main() {
8+
assert_eq!(env!("MY_VAR"), "123abc");
9+
}

tests/ui/extenv/extenv-env.rs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// compile-flags: --env FOO=123abc -Zunstable-options
2+
// run-pass
3+
fn main() {
4+
assert_eq!(env!("FOO"), "123abc");
5+
}

tests/ui/extenv/extenv-not-env.rs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// run-pass
2+
// rustc-env:MY_ENV=/
3+
// Ensures that variables not defined through `--env` are still available.
4+
5+
fn main() {
6+
assert!(!env!("MY_ENV").is_empty());
7+
}

0 commit comments

Comments
 (0)