This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: [v2, with help] Re: run one test
- From: DJ Delorie <dj at redhat dot com>
- To: Florian Weimer <fweimer at redhat dot com>
- Cc: libc-alpha at sourceware dot org
- Date: Fri, 04 Oct 2019 13:33:07 -0400
- Subject: Re: [v2, with help] Re: run one test
Florian Weimer <fweimer@redhat.com> writes:
>> +help:
>> + @sed '0,/^help-starts-here$$/d' Makefile.help
>
> That doesn't look like something that would work in a build directory,
> where Makefile.help will not be present in the current directory.
It works just fine because the build Makefile just cd's to the source
directory and re-runs the target.
all .DEFAULT:
$(MAKE) -r PARALLELMFLAGS="$(PARALLELMFLAGS)" -C $(srcdir) objdir=`pwd` $@
>> +$ rm $(objpfx)testroot.pristine/install.stamp
>> + Forces the testroot to be reinstalled the next time you run
>> + the testsuite (or just rm -rf testroot.pristine)
>
> It may make sense to put the actual path there, or otherwise avoid the
> invalid shell syntax.
I don't want to start filtering in real paths; I'll edit it.