| 145 | } |
| 146 | |
| 147 | static int |
| 148 | test_net_ether(void) |
| 149 | { |
| 150 | if (test_ether_addr()) |
| 151 | return -1; |
| 152 | |
| 153 | if (test_format_addr()) |
| 154 | return -1; |
| 155 | |
| 156 | if (test_unformat_addr()) |
| 157 | return -1; |
| 158 | |
| 159 | if (test_invalid_addr()) |
| 160 | return -1; |
| 161 | |
| 162 | return 0; |
| 163 | } |
| 164 | |
| 165 | REGISTER_FAST_TEST(net_ether_autotest, true, true, test_net_ether); |
nothing calls this directly
no test coverage detected