unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH] test: conditionally test help system depending on configured support
@ 2014-03-26  8:48 Jani Nikula
  2014-03-26 10:58 ` David Bremner
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jani Nikula @ 2014-03-26  8:48 UTC (permalink / raw)
  To: notmuch, david

If neither sphinx nor rst2man is available, the notmuch man pages will
not be available. Take this into account in the help system test.
---
 test/Makefile.local    |    8 ++++++++
 test/T010-help-test.sh |   12 ++++++++++--
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/test/Makefile.local b/test/Makefile.local
index 2b18bdb..987441f 100644
--- a/test/Makefile.local
+++ b/test/Makefile.local
@@ -42,10 +42,18 @@ else
 	ln -sf /bin/false $@
 endif
 
+$(dir)/have-man: Makefile.config
+ifeq ($(HAVE_SPHINX)$(HAVE_RST2MAN),00)
+	ln -sf /bin/false $@
+else
+	ln -sf /bin/true $@
+endif
+
 .PHONY: test check
 
 TEST_BINARIES=$(dir)/arg-test \
 	      $(dir)/have-compact \
+	      $(dir)/have-man \
 	      $(dir)/hex-xcode \
 	      $(dir)/random-corpus \
 	      $(dir)/parse-time \
diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh
index f7df725..77410bc 100755
--- a/test/T010-help-test.sh
+++ b/test/T010-help-test.sh
@@ -4,9 +4,17 @@ test_description="online help"
 . ./test-lib.sh
 
 test_expect_success 'notmuch --help' 'notmuch --help'
-test_expect_success 'notmuch --help tag' 'notmuch --help tag'
 test_expect_success 'notmuch help' 'notmuch help'
-test_expect_success 'notmuch help tag' 'notmuch help tag'
 test_expect_success 'notmuch --version' 'notmuch --version'
 
+if ${TEST_DIRECTORY}/have-man; then
+    test_expect_success 'notmuch --help tag' 'notmuch --help tag'
+    test_expect_success 'notmuch help tag' 'notmuch help tag'
+else
+    test_expect_success 'notmuch --help tag (man pages not available)' \
+	'test_must_fail notmuch --help tag'
+    test_expect_success 'notmuch help tag (man pages not available)' \
+	'test_must_fail notmuch help tag'
+fi
+
 test_done
-- 
1.7.2.5

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

* Re: [PATCH] test: conditionally test help system depending on configured support
  2014-03-26  8:48 [PATCH] test: conditionally test help system depending on configured support Jani Nikula
@ 2014-03-26 10:58 ` David Bremner
  2014-03-26 21:56 ` Mark Walters
  2014-03-27  0:40 ` David Bremner
  2 siblings, 0 replies; 4+ messages in thread
From: David Bremner @ 2014-03-26 10:58 UTC (permalink / raw)
  To: Jani Nikula, notmuch

Jani Nikula <jani@nikula.org> writes:

> If neither sphinx nor rst2man is available, the notmuch man pages will
> not be available. Take this into account in the help system test.

LGTM

d

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

* Re: [PATCH] test: conditionally test help system depending on configured support
  2014-03-26  8:48 [PATCH] test: conditionally test help system depending on configured support Jani Nikula
  2014-03-26 10:58 ` David Bremner
@ 2014-03-26 21:56 ` Mark Walters
  2014-03-27  0:40 ` David Bremner
  2 siblings, 0 replies; 4+ messages in thread
From: Mark Walters @ 2014-03-26 21:56 UTC (permalink / raw)
  To: Jani Nikula, notmuch, david


LGTM +1 (and tests pass on one of my systems that does not have sphinx
or rst2man)

Best wishes

Mark

On Wed, 26 Mar 2014, Jani Nikula <jani@nikula.org> wrote:
> If neither sphinx nor rst2man is available, the notmuch man pages will
> not be available. Take this into account in the help system test.
> ---
>  test/Makefile.local    |    8 ++++++++
>  test/T010-help-test.sh |   12 ++++++++++--
>  2 files changed, 18 insertions(+), 2 deletions(-)
>
> diff --git a/test/Makefile.local b/test/Makefile.local
> index 2b18bdb..987441f 100644
> --- a/test/Makefile.local
> +++ b/test/Makefile.local
> @@ -42,10 +42,18 @@ else
>  	ln -sf /bin/false $@
>  endif
>  
> +$(dir)/have-man: Makefile.config
> +ifeq ($(HAVE_SPHINX)$(HAVE_RST2MAN),00)
> +	ln -sf /bin/false $@
> +else
> +	ln -sf /bin/true $@
> +endif
> +
>  .PHONY: test check
>  
>  TEST_BINARIES=$(dir)/arg-test \
>  	      $(dir)/have-compact \
> +	      $(dir)/have-man \
>  	      $(dir)/hex-xcode \
>  	      $(dir)/random-corpus \
>  	      $(dir)/parse-time \
> diff --git a/test/T010-help-test.sh b/test/T010-help-test.sh
> index f7df725..77410bc 100755
> --- a/test/T010-help-test.sh
> +++ b/test/T010-help-test.sh
> @@ -4,9 +4,17 @@ test_description="online help"
>  . ./test-lib.sh
>  
>  test_expect_success 'notmuch --help' 'notmuch --help'
> -test_expect_success 'notmuch --help tag' 'notmuch --help tag'
>  test_expect_success 'notmuch help' 'notmuch help'
> -test_expect_success 'notmuch help tag' 'notmuch help tag'
>  test_expect_success 'notmuch --version' 'notmuch --version'
>  
> +if ${TEST_DIRECTORY}/have-man; then
> +    test_expect_success 'notmuch --help tag' 'notmuch --help tag'
> +    test_expect_success 'notmuch help tag' 'notmuch help tag'
> +else
> +    test_expect_success 'notmuch --help tag (man pages not available)' \
> +	'test_must_fail notmuch --help tag'
> +    test_expect_success 'notmuch help tag (man pages not available)' \
> +	'test_must_fail notmuch help tag'
> +fi
> +
>  test_done
> -- 
> 1.7.2.5
>
> _______________________________________________
> notmuch mailing list
> notmuch@notmuchmail.org
> http://notmuchmail.org/mailman/listinfo/notmuch

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

* Re: [PATCH] test: conditionally test help system depending on configured support
  2014-03-26  8:48 [PATCH] test: conditionally test help system depending on configured support Jani Nikula
  2014-03-26 10:58 ` David Bremner
  2014-03-26 21:56 ` Mark Walters
@ 2014-03-27  0:40 ` David Bremner
  2 siblings, 0 replies; 4+ messages in thread
From: David Bremner @ 2014-03-27  0:40 UTC (permalink / raw)
  To: Jani Nikula, notmuch

Jani Nikula <jani@nikula.org> writes:

> If neither sphinx nor rst2man is available, the notmuch man pages will
> not be available. Take this into account in the help system test.

pushed.

d

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

end of thread, other threads:[~2014-03-27  0:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-26  8:48 [PATCH] test: conditionally test help system depending on configured support Jani Nikula
2014-03-26 10:58 ` David Bremner
2014-03-26 21:56 ` Mark Walters
2014-03-27  0:40 ` David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

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 read-only IMAP folder(s) and NNTP newsgroup(s).