| 202 | } |
| 203 | |
| 204 | static int |
| 205 | test_devargs(void) |
| 206 | { |
| 207 | printf("== test valid case ==\n"); |
| 208 | if (test_valid_devargs() < 0) |
| 209 | return -1; |
| 210 | printf("== test invalid case ==\n"); |
| 211 | if (test_invalid_devargs() < 0) |
| 212 | return -1; |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | REGISTER_FAST_TEST(devargs_autotest, true, true, test_devargs); |
nothing calls this directly
no test coverage detected