From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pf1-f193.google.com ([209.85.210.193]:35910 "EHLO mail-pf1-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2407729AbfIUQU4 (ORCPT ); Sat, 21 Sep 2019 12:20:56 -0400 Received: by mail-pf1-f193.google.com with SMTP id y22so6516938pfr.3 for ; Sat, 21 Sep 2019 09:20:56 -0700 (PDT) Date: Sun, 22 Sep 2019 00:20:48 +0800 From: Eryu Guan Subject: Re: [PATCH 00/13] Fix locktest and add lease testing to it Message-ID: <20190921162048.GP2622@desktop> References: <20190918041558.2621-1-ira.weiny@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190918041558.2621-1-ira.weiny@intel.com> Sender: fstests-owner@vger.kernel.org To: ira.weiny@intel.com Cc: fstests@vger.kernel.org, john.hubbard@gmail.com, Dave Chinner , Jason Gunthorpe , Jan Kara , dan.j.williams@intel.com, Jeff Layton List-ID: On Tue, Sep 17, 2019 at 09:15:45PM -0700, ira.weiny@intel.com wrote: > From: Ira Weiny > > Rather than have a separate lease test, combine the previously proposed lease > tests[1] directly to locktest because they share so much code. Firstly, thanks for the revised version! Then, I'm so sorry if I didn't explain clearly in previous review, we do need a separate lease test, e.g. a new generic/568 test, and don't want locktest.c to test both lock and lease in the same generic/131 case. But reuse & extend the src/locktest.c to test lease as well, and call src/locktest in the new generic/568 case. e.g. introduce two test arrays, one for lock test and one for lease test, and add new commandline switch to src/locktest.c and use the correct test array according to the given commandline option. > > To make things cleaner update the lock test code and test script. This > includes fixing a rather serious bug. > > Finally update the error output to help identify any steps which fail during > testing. > > Ira > > [1] https://www.spinics.net/lists/fstests/msg12467.html > > Ira Weiny (13): > src/locktest: Remove unnecessary sleep > src/locktest: Remove OPEN macro > src/locktest: Change command macro names > src/locktest: Add get_cmd_str > src/locktest.c: Clean up client command passing > src/locktest.c: Fix return code if last test fails > generic/131: Clean up pid variables > generic/131: Save stderr for debugging Looks like above cleanups and bugfixes can be merged independently, but I'm not sure if you need to update them as well when introducing new test array and new test case, so I leave them unmerged for now. Thanks! Eryu > src/locktest: Add simple lease testing > src/locktest: Add lease testing for basic signal reception > src/locktest: Add truncate lease tests > src/locktest: Clean up error output > src/locktest: Audit all debug output > > src/locktest.c | 957 ++++++++++++++++++++++++++++++---------------- > tests/generic/131 | 72 ++-- > 2 files changed, 666 insertions(+), 363 deletions(-) > > -- > 2.20.1 >