File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ case $HOST_TARGET in
108
108
MIRI_TEST_TARGET=i686-pc-windows-msvc run_tests
109
109
MIRI_TEST_TARGET=x86_64-unknown-freebsd run_tests_minimal hello integer vec panic/panic concurrency/simple atomic data_race env/var
110
110
MIRI_TEST_TARGET=aarch64-linux-android run_tests_minimal hello integer vec panic/panic
111
- MIRI_TEST_TARGET=wasm32-wasi MIRI_NO_STD=1 run_tests_minimal no_std # supports std but miri doesn't support it
111
+ MIRI_TEST_TARGET=wasm32-wasi run_tests_minimal no_std integer
112
112
MIRI_TEST_TARGET=thumbv7em-none-eabihf MIRI_NO_STD=1 run_tests_minimal no_std # no_std embedded architecture
113
113
MIRI_TEST_TARGET=tests/avr.json MIRI_NO_STD=1 run_tests_minimal no_std # JSON target file
114
114
;;
Original file line number Diff line number Diff line change @@ -9,13 +9,15 @@ edition = "2021"
9
9
10
10
[dependencies ]
11
11
# all dependencies (and their transitive ones) listed here can be used in `tests/`.
12
- tokio = { version = " 1.0" , features = [" full" ] }
13
12
libc = " 0.2"
14
- page_size = " 0.5"
15
13
num_cpus = " 1.10.1"
16
14
17
15
getrandom_1 = { package = " getrandom" , version = " 0.1" }
18
16
getrandom = { version = " 0.2" }
19
17
rand = { version = " 0.8" , features = [" small_rng" ] }
20
18
19
+ [target .'cfg(not(any(target_arch = "wasm32", target_arch = "wasm64")))' .dependencies ]
20
+ page_size = " 0.5"
21
+ tokio = { version = " 1.0" , features = [" full" ] }
22
+
21
23
[workspace ]
You can’t perform that action at this time.
0 commit comments