summary refs log tree commit diff
path: root/src/test/run-pass/exec-env.rs
blob: c7af251b59638608928295a4d00618e01e3bb64a (plain)
1
2
3
4
5
6
// 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");
}