File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -30,17 +30,15 @@ case $1 in
30
30
31
31
RUSTFLAGS=" -C debug-assertions=no -C lto" \
32
32
CARGO_INCREMENTAL=0 \
33
- $run --test $t --no-default-features \
34
- --features ' no_std mem c' --no-run
33
+ $run --test $t --no-default-features --features ' mem c' --no-run
35
34
qemu-arm-static target/${1} /debug/$t -*
36
35
done
37
36
38
37
for t in $( ls testcrate/tests) ; do
39
38
t=${t% .rs}
40
39
RUSTFLAGS=" -C lto" \
41
40
CARGO_INCREMENTAL=0 \
42
- $run --test $t --no-default-features \
43
- --features ' no_std mem c' --no-run --release
41
+ $run --test $t --no-default-features --features ' mem c' --no-run --release
44
42
qemu-arm-static target/${1} /release/$t -*
45
43
done
46
44
;;
Original file line number Diff line number Diff line change @@ -26,4 +26,3 @@ c = ["compiler_builtins/c"]
26
26
mem = [" compiler_builtins/mem" ]
27
27
mangled-names = [" compiler_builtins/mangled-names" ]
28
28
default = [" mangled-names" ]
29
- no_std = []
You can’t perform that action at this time.
0 commit comments