about summary refs log tree commit diff
path: root/src/test/run-pass/exec-env.rs
blob: 1327b558fc967d68569a3dddf9b1aa111ca6a6ea (plain)
1
2
3
4
5
6
7
8
9
// exec-env:TEST_EXEC_ENV=22
// ignore-cloudabi no env vars
// ignore-emscripten FIXME: issue #31622

use std::env;

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