File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ fn test_fn_extra_expansion() {
146
146
let mut vf32 = Vec :: new ( ) ;
147
147
let mut vf64 = Vec :: new ( ) ;
148
148
let mut vf128 = Vec :: new ( ) ;
149
+ let mut vbuiltins = Vec :: new ( ) ;
149
150
150
151
// Test with no extra, no skip, and no attributes
151
152
libm_macros:: for_each_function! {
@@ -155,6 +156,7 @@ fn test_fn_extra_expansion() {
155
156
ALL_F32 => vf32,
156
157
ALL_F64 => vf64,
157
158
ALL_F128 => vf128,
159
+ ALL_BUILTINS => vbuiltins,
158
160
}
159
161
}
160
162
@@ -170,8 +172,11 @@ fn test_fn_extra_expansion() {
170
172
for name in vf32 {
171
173
assert ! ( name. ends_with( "f" ) , "{name}" ) ;
172
174
}
173
- let _ = vf64;
174
175
for name in vf128 {
175
176
assert ! ( name. ends_with( "f128" ) , "{name}" ) ;
176
177
}
178
+
179
+ // Nothing to assert here
180
+ let _ = vf64;
181
+ let _ = vbuiltins;
177
182
}
You can’t perform that action at this time.
0 commit comments