summaryrefslogtreecommitdiffstats
path: root/src/test/ui/meta/auxiliary/env.rs
blob: b3644d8d5943f188e192099b2b557050ad6fb766 (plain)
1
2
3
4
5
6
7
8
9
// Check that aux builds can also use rustc-env, but environment is configured
// separately from the main test case.
//
// rustc-env:COMPILETEST_BAR=bar

pub fn test() {
    assert_eq!(option_env!("COMPILETEST_FOO"), None);
    assert_eq!(env!("COMPILETEST_BAR"), "bar");
}