Files
third_party_liburing/test/exec-target.c
T
Pavel Begunkov 86a5d92390 tests: add no-op executable for exec
There are differences between close and exec from io_uring perspective,
so we want to test exec as well. For that we need a program doing
nothing to exec into.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/ed97597635e67d750bff377bdf68d03e1eb022e5.1631358658.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
2021-09-11 08:25:22 -06:00

5 lines
48 B
C

int main(int argc, char *argv[])
{
return 0;
}