Test driver. */
| 426 | |
| 427 | /* Test driver. */ |
| 428 | int main(int argc, char *argv[]) |
| 429 | { |
| 430 | if (argc > 1) |
| 431 | return 0; |
| 432 | |
| 433 | if (test_fxattr()) |
| 434 | return EXIT_FAILURE; |
| 435 | if (no_xattr) |
| 436 | return EXIT_SUCCESS; |
| 437 | if (test_xattr() || test_failure_fxattr() || test_failure_xattr() || |
| 438 | test_invalid_sqe()) |
| 439 | return EXIT_FAILURE; |
| 440 | |
| 441 | return EXIT_SUCCESS; |
| 442 | } |
nothing calls this directly
no test coverage detected