File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -101,16 +101,21 @@ if [ "$target" = "s390x-unknown-linux-gnu" ]; then
101
101
passed=0
102
102
until [ $n -ge $N ]; do
103
103
if [ " $passed " = " 0" ]; then
104
- if $cmd --no-default-features; then
104
+ if $cmd --no-default-features --features rustc-dep-of-std ; then
105
105
passed=$(( passed+ 1 ))
106
106
continue
107
107
fi
108
108
elif [ " $passed " = " 1" ]; then
109
- if $cmd ; then
109
+ if $cmd --no-default-features ; then
110
110
passed=$(( passed+ 1 ))
111
111
continue
112
112
fi
113
113
elif [ " $passed " = " 2" ]; then
114
+ if $cmd ; then
115
+ passed=$(( passed+ 1 ))
116
+ continue
117
+ fi
118
+ elif [ " $passed " = " 3" ]; then
114
119
if $cmd --features extra_traits; then
115
120
break
116
121
fi
@@ -119,6 +124,7 @@ if [ "$target" = "s390x-unknown-linux-gnu" ]; then
119
124
sleep 1
120
125
done
121
126
else
127
+ $cmd --no-default-features --features rustc-dep-of-std
122
128
$cmd --no-default-features
123
129
$cmd
124
130
$cmd --features extra_traits
You can’t perform that action at this time.
0 commit comments