diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-07-03 09:08:15 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-07-03 09:08:15 -0600 |
commit | 2c73fc4774756de87e4aa4609f0e606d878914e7 (patch) | |
tree | 5fedb034237618608a88407c8451bf940f2685bd /test | |
parent | 59666e46d99f67714ab8a510ebd8b8792ff9b938 (diff) | |
download | liburing-2c73fc4774756de87e4aa4609f0e606d878914e7.tar.gz liburing-2c73fc4774756de87e4aa4609f0e606d878914e7.tar.bz2 |
test/ce593a6c480a-test: ignore arguments
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'test')
-rw-r--r-- | test/ce593a6c480a-test.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/ce593a6c480a-test.c b/test/ce593a6c480a-test.c index 8763893..9aee2f2 100644 --- a/test/ce593a6c480a-test.c +++ b/test/ce593a6c480a-test.c @@ -43,6 +43,9 @@ int main(int argc, char *argv[]) char buf[8] = {0, 0, 0, 0, 0, 0, 1}; pthread_t tid; + if (argc > 1) + return 0; + /* Create an eventfd to be registered with the loop to be * notified of events being ready */ |