From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Price Date: Wed, 9 May 2018 18:05:40 +0100 Subject: [Cluster-devel] [PATCH] gfs2-utils tests: Fix testsuite cleanup In-Reply-To: <20180509154057.7881-1-Valentin.Vidic@CARNet.hr> References: <20180509154057.7881-1-Valentin.Vidic@CARNet.hr> Message-ID: List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On 09/05/18 16:40, Valentin Vidic wrote: > Parallel distclean removes testsuite before it is finished > running, causing make error. > > Signed-off-by: Valentin Vidic > --- > tests/Makefile.am | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Applied - thanks! Andy > > diff --git a/tests/Makefile.am b/tests/Makefile.am > index 1dedc2b2..e52aab4c 100644 > --- a/tests/Makefile.am > +++ b/tests/Makefile.am > @@ -6,8 +6,7 @@ EXTRA_DIST = \ > > DISTCLEANFILES = \ > atlocal \ > - atconfig \ > - $(TESTSUITE) > + atconfig > > CLEANFILES = testvol > > @@ -103,6 +102,7 @@ installcheck-local: atconfig atlocal $(TESTSUITE) > > clean-local: > test ! -f '$(TESTSUITE)' || $(SHELL) '$(TESTSUITE)' --clean > + rm -f '$(TESTSUITE)' > > atconfig: $(top_builddir)/config.status > cd $(top_builddir) && ./config.status tests/$@ >