rust/src/test/run-pass/exec-env.rs

7 lines
152 B
Rust
Raw Normal View History

// xfail-fast (exec-env not supported in fast mode)
// exec-env:TEST_EXEC_ENV=22
fn main() {
assert os::getenv(~"TEST_EXEC_ENV") == some(~"22");
}