MCPcopy Create free account
hub / github.com/axboe/liburing / main

Function main

test/xattr.c:428–442  ·  view source on GitHub ↗

Test driver. */

Source from the content-addressed store, hash-verified

426
427/* Test driver. */
428int 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}

Callers

nothing calls this directly

Calls 5

test_fxattrFunction · 0.85
test_xattrFunction · 0.85
test_failure_fxattrFunction · 0.85
test_failure_xattrFunction · 0.85
test_invalid_sqeFunction · 0.85

Tested by

no test coverage detected