| 341 | } |
| 342 | |
| 343 | static int |
| 344 | test_common(void) |
| 345 | { |
| 346 | int ret = 0; |
| 347 | ret |= test_align(); |
| 348 | ret |= test_macros(0); |
| 349 | ret |= test_misc(); |
| 350 | ret |= test_bsf(); |
| 351 | ret |= test_log2(); |
| 352 | ret |= test_fls(); |
| 353 | |
| 354 | return ret; |
| 355 | } |
| 356 | |
| 357 | REGISTER_FAST_TEST(common_autotest, true, true, test_common); |
nothing calls this directly
no test coverage detected