about summary refs log tree commit diff
path: root/tests/ui/process/exec-env.rs
blob: 9054b378f5679b88197781e2a8431fddee1f8d00 (plain)
1
2
3
4
5
6
7
8
9
10
//@ run-pass
//@ exec-env:TEST_EXEC_ENV=22
//@ ignore-wasm32 wasm runtimes aren't configured to inherit env vars yet
//@ ignore-sgx unsupported

use std::env;

pub fn main() {
    assert_eq!(env::var("TEST_EXEC_ENV"), Ok("22".to_string()));
}