On Mon, Sep 27, 2021 at 8:28 PM Jens Axboe <axboe@xxxxxxxxx> wrote: > > On 9/26/21 10:37 PM, Ammar Faizi wrote: > > The use of `rand()` should be accompanied by `srand()`. > > The idiomatic way that I usually do it for these tests is: > > srand(getpid()); > > Shouldn't really matter, but we may as well keep it consistent. v2: Use getpid() for the random seed. ---------------------------------------------------------------- Ammar Faizi (2): test: Fix endianess issue on `bind()` and `connect()` test/accept-link: Add `srand()` for better randomness test/232c93d07b74-test.c | 9 +++++---- test/accept-link.c | 14 ++++++++++---- test/accept.c | 5 +++-- test/poll-link.c | 11 +++++++---- test/shutdown.c | 5 +++-- test/socket-rw-eagain.c | 5 +++-- test/socket-rw.c | 5 +++-- 7 files changed, 34 insertions(+), 20 deletions(-) --- Ammar Faizi