| 21 | #include "liburing.h" |
| 22 | |
| 23 | static int fill_exec_target(char *dst, char *path) |
| 24 | { |
| 25 | struct stat sb; |
| 26 | |
| 27 | /* |
| 28 | * Should either be ./exec-target.t or test/exec-target.t |
| 29 | */ |
| 30 | sprintf(dst, "%s", path); |
| 31 | return stat(dst, &sb); |
| 32 | } |
| 33 | |
| 34 | static int test_exec(struct io_uring *ring, char * const argv[]) |
| 35 | { |