File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ case $HOST_TARGET in
60
60
MIRI_TEST_TARGET=i686-unknown-linux-gnu run_tests
61
61
MIRI_TEST_TARGET=aarch64-apple-darwin run_tests
62
62
MIRI_TEST_TARGET=i686-pc-windows-msvc run_tests
63
- MIRI_TEST_TARGET=x86_64-unknown-freebsd run_tests_minimal hello integer vec current_dir data_race
63
+ MIRI_TEST_TARGET=x86_64-unknown-freebsd run_tests_minimal hello integer vec current_dir data_race env
64
64
MIRI_TEST_TARGET=thumbv7em-none-eabihf MIRI_NO_STD=1 run_tests_minimal no_std # no_std embedded architecture
65
65
;;
66
66
x86_64-apple-darwin)
Original file line number Diff line number Diff line change 1
1
// ignore-windows: Windows does not have a global environ list that the program can access directly
2
2
3
- #[ cfg( target_os = "linux" ) ]
3
+ #[ cfg( any ( target_os = "linux" , target_os = "freebsd" ) ) ]
4
4
fn get_environ ( ) -> * const * const u8 {
5
5
extern "C" {
6
6
static mut environ: * const * const u8 ;
You can’t perform that action at this time.
0 commit comments