git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] t/t5800-remote-testpy: skip all tests if not built
@ 2013-06-18 20:06 Ramkumar Ramachandra
  2013-06-18 20:28 ` Junio C Hamano
  0 siblings, 1 reply; 6+ messages in thread
From: Ramkumar Ramachandra @ 2013-06-18 20:06 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano

416fda6 (build: do not install git-remote-testpy, 2013-05-24) added
git-remote-testpy to NO_INSTALL, with the intent of excluding it from
the default install.  This is typically meant for scripts in contrib/
with their own testsuite and Makefile (e.g. git remote-bzr, git
remote-hg).  Unfortunately, git-remote-testpy.py is a toplevel script
without its own Makefile; its testsuite is located in
t/t5800-remote-testpy.sh.

What this means is that git-remote-testpy is not built by default (when
'make' is invoked), but t5800 runs by default (like every other test in
t/).  As a result, a new contributor cloning git.git and running 'make
test' for the first time will notice test failures.  Fix this
unpleasantness by patching t5800 to check for git-remote-testpy as a
prerequisite.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
---
 Candidate for maint?

 t/t5800-remote-testpy.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/t/t5800-remote-testpy.sh b/t/t5800-remote-testpy.sh
index 1e683d4..9df35b5 100755
--- a/t/t5800-remote-testpy.sh
+++ b/t/t5800-remote-testpy.sh
@@ -12,6 +12,11 @@ if ! test_have_prereq PYTHON ; then
 	test_done
 fi
 
+if ! test -e "$GIT_BUILD_DIR/git-remote-testpy"; then
+	skip_all='skipping python remote-helper tests, git-remote-testpy not built'
+	test_done
+fi
+
 "$PYTHON_PATH" -c '
 import sys
 if sys.hexversion < 0x02040000:
-- 
1.8.3.1.379.g1f0e7d7

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] t/t5800-remote-testpy: skip all tests if not built
  2013-06-18 20:06 [PATCH] t/t5800-remote-testpy: skip all tests if not built Ramkumar Ramachandra
@ 2013-06-18 20:28 ` Junio C Hamano
  2013-06-18 20:35   ` Ramkumar Ramachandra
  0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2013-06-18 20:28 UTC (permalink / raw)
  To: Ramkumar Ramachandra; +Cc: Git List

Ramkumar Ramachandra <artagnon@gmail.com> writes:

> What this means is that git-remote-testpy is not built by default (when
> 'make' is invoked), but t5800 runs by default (like every other test in
> t/).  As a result, a new contributor cloning git.git and running 'make
> test' for the first time will notice test failures.

Sounds like making "make test" build it is a more correct approach,
at least to me.  What am I missing?

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] t/t5800-remote-testpy: skip all tests if not built
  2013-06-18 20:28 ` Junio C Hamano
@ 2013-06-18 20:35   ` Ramkumar Ramachandra
  2013-06-21  5:31     ` Jeff King
  0 siblings, 1 reply; 6+ messages in thread
From: Ramkumar Ramachandra @ 2013-06-18 20:35 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Git List

Junio C Hamano wrote:
> Sounds like making "make test" build it is a more correct approach,
> at least to me.  What am I missing?

How exactly?  I'm not exactly competent in make, but this is what I
understood from what you said (and it's obviously wrong):

diff --git a/Makefile b/Makefile
index 03524d0..da91937 100644
--- a/Makefile
+++ b/Makefile
@@ -580,6 +580,7 @@ TEST_PROGRAMS_NEED_X += test-svn-fe
 TEST_PROGRAMS_NEED_X += test-wildmatch

 TEST_PROGRAMS = $(patsubst %,%$X,$(TEST_PROGRAMS_NEED_X))
+TEST_PROGRAMS += git-remote-testpy

 # List built-in command $C whose implementation cmd_$C() is not in
 # builtin/$C.o but is linked in as part of some other command.

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] t/t5800-remote-testpy: skip all tests if not built
  2013-06-18 20:35   ` Ramkumar Ramachandra
@ 2013-06-21  5:31     ` Jeff King
  2013-06-21  6:37       ` Ramkumar Ramachandra
  0 siblings, 1 reply; 6+ messages in thread
From: Jeff King @ 2013-06-21  5:31 UTC (permalink / raw)
  To: Ramkumar Ramachandra; +Cc: Junio C Hamano, Git List

On Wed, Jun 19, 2013 at 02:05:06AM +0530, Ramkumar Ramachandra wrote:

> Junio C Hamano wrote:
> > Sounds like making "make test" build it is a more correct approach,
> > at least to me.  What am I missing?
> 
> How exactly?  I'm not exactly competent in make, but this is what I
> understood from what you said (and it's obviously wrong):
> 
> diff --git a/Makefile b/Makefile
> index 03524d0..da91937 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -580,6 +580,7 @@ TEST_PROGRAMS_NEED_X += test-svn-fe
>  TEST_PROGRAMS_NEED_X += test-wildmatch
> 
>  TEST_PROGRAMS = $(patsubst %,%$X,$(TEST_PROGRAMS_NEED_X))
> +TEST_PROGRAMS += git-remote-testpy

I'm confused. git-remote-testpy is already mentioned in SCRIPT_PYTHON,
which means it should be built by "make" or "make all", as well as "make
test" (which depends on "all"). I just double checked that this is the
case with a fresh clone of master. NO_INSTALL should not have an impact.

But upon looking at the Makefile more, I am doubly confused. We build
$(ALL_PROGRAMS), which contains $(SCRIPTS), which contains
$(SCRIPT_PYTHON_INS), the set of _installed_ python scripts. Which
doesn't make sense; we would want to build all of the generated scripts,
and only care about the installed ones for the "install" target.

Ah, I see. We later add back in $(NO_INSTALL) as dependencies of "all".
That is perhaps not the most direct way of doing it, but I suspect it
was done to keep the meaning of "$(ALL_PROGRAMS)" the same before and
after.

So I do not see any problem with the current Makefile. Running "make" or
"make test" should let t5800 pass. Can you describe how you are
triggering the issue in more detail?

-Peff

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] t/t5800-remote-testpy: skip all tests if not built
  2013-06-21  5:31     ` Jeff King
@ 2013-06-21  6:37       ` Ramkumar Ramachandra
  2013-06-21  6:40         ` Jeff King
  0 siblings, 1 reply; 6+ messages in thread
From: Ramkumar Ramachandra @ 2013-06-21  6:37 UTC (permalink / raw)
  To: Jeff King; +Cc: Junio C Hamano, Git List

Jeff King wrote:
> So I do not see any problem with the current Makefile. Running "make" or
> "make test" should let t5800 pass. Can you describe how you are
> triggering the issue in more detail?

master, at the time of reporting the issue:

  artagnon|master=:~/src/git$ make -j 8
  artagnon|master=:~/src/git$ rm git-remote-testpy
  artagnon|master=:~/src/git$ make -j 8
  artagnon|master=:~/src/git$ cd t
  artagnon|master=:~/src/git$ sh t5800-remote-testpy.sh
  # failure

Yesterday's jc publish fixed it: 6c473a5 (build: generate and clean
test scripts, 2013-06-07) graduated to master; it adds $NO_INSTALL to
the target "all", among other things.

> [...]

Yes, I agree that it is convoluted and can be cleaned up.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] t/t5800-remote-testpy: skip all tests if not built
  2013-06-21  6:37       ` Ramkumar Ramachandra
@ 2013-06-21  6:40         ` Jeff King
  0 siblings, 0 replies; 6+ messages in thread
From: Jeff King @ 2013-06-21  6:40 UTC (permalink / raw)
  To: Ramkumar Ramachandra; +Cc: Junio C Hamano, Git List

On Fri, Jun 21, 2013 at 12:07:50PM +0530, Ramkumar Ramachandra wrote:

> Yesterday's jc publish fixed it: 6c473a5 (build: generate and clean
> test scripts, 2013-06-07) graduated to master; it adds $NO_INSTALL to
> the target "all", among other things.

Ah, makes sense. Sorry to be slow.

-Peff

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-06-21  6:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-18 20:06 [PATCH] t/t5800-remote-testpy: skip all tests if not built Ramkumar Ramachandra
2013-06-18 20:28 ` Junio C Hamano
2013-06-18 20:35   ` Ramkumar Ramachandra
2013-06-21  5:31     ` Jeff King
2013-06-21  6:37       ` Ramkumar Ramachandra
2013-06-21  6:40         ` Jeff King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).