Re: [PATCH] test: use the python interpreter in sh.config
authorTomi Ollila <tomi.ollila@iki.fi>
Sun, 2 Aug 2015 08:31:19 +0000 (11:31 +0300)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:49:14 +0000 (14:49 -0700)
84/64f3a6d1dfe4322992d539965a0c9a6a9d6aae [new file with mode: 0644]

diff --git a/84/64f3a6d1dfe4322992d539965a0c9a6a9d6aae b/84/64f3a6d1dfe4322992d539965a0c9a6a9d6aae
new file mode 100644 (file)
index 0000000..435c83f
--- /dev/null
@@ -0,0 +1,153 @@
+Return-Path: <tomi.ollila@iki.fi>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 534926DE1781\r
+ for <notmuch@notmuchmail.org>; Sun,  2 Aug 2015 01:31:40 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.926\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.926 tagged_above=-999 required=5 tests=[AWL=0.274, \r
+ SPF_NEUTRAL=0.652] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id xYQSHlZD6aXU for <notmuch@notmuchmail.org>;\r
+ Sun,  2 Aug 2015 01:31:37 -0700 (PDT)\r
+Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 5C6246DE177D\r
+ for <notmuch@notmuchmail.org>; Sun,  2 Aug 2015 01:31:36 -0700 (PDT)\r
+Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
+ by guru.guru-group.fi (Postfix) with ESMTP id AE417100046;\r
+ Sun,  2 Aug 2015 11:31:19 +0300 (EEST)\r
+From: Tomi Ollila <tomi.ollila@iki.fi>\r
+To: David Bremner <david@tethera.net>, David Bremner <david@tethera.net>,\r
+ notmuch@notmuchmail.org\r
+Subject: Re: [PATCH] test: use the python interpreter in sh.config\r
+In-Reply-To: <1438497655-15446-1-git-send-email-david@tethera.net>\r
+References: <87mw0agsp7.fsf@maritornes.cs.unb.ca>\r
+ <1438497655-15446-1-git-send-email-david@tethera.net>\r
+User-Agent: Notmuch/0.20.2+31~g967a7a3 (http://notmuchmail.org) Emacs/24.3.1\r
+ (x86_64-unknown-linux-gnu)\r
+X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
+ $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
+ !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
+Date: Sun, 02 Aug 2015 11:31:19 +0300\r
+Message-ID: <m2d1z62iso.fsf@guru.guru-group.fi>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 02 Aug 2015 08:31:40 -0000\r
+\r
+On Sun, Aug 02 2015, David Bremner <david@tethera.net> wrote:\r
+\r
+> The configure script chooses "python" if both python and python{2,3}\r
+> exist exists, so this could change the version of python used to run\r
+> the test suite.\r
+\r
+LGTM. tests pass. \r
+\r
+>\r
+> The checking for ${NOTMUCH_PYTHON} in the test suite is arguably\r
+> over-engineering, since the configure step will fail if it can't find\r
+> it.\r
+\r
+Unless we accidentally edit NOTMUCH_PYTHON (away) in configure...\r
+(i.e. I parsonally think this comment part is unnecessary, but i'm not\r
+against having it)\r
+\r
+Tomi\r
+\r
+> ---\r
+>\r
+> Here is an updated version which fixes the subject typo, and actually\r
+> tests for the python binary read from sh.config. I'll probably merge this version unless there are objections\r
+>\r
+>  configure           |  2 ++\r
+>  test/T390-python.sh |  2 ++\r
+>  test/test-lib.sh    | 15 ++++-----------\r
+>  3 files changed, 8 insertions(+), 11 deletions(-)\r
+>\r
+> diff --git a/configure b/configure\r
+> index 56f550b..20fbed6 100755\r
+> --- a/configure\r
+> +++ b/configure\r
+> @@ -114,6 +114,8 @@ Other environment variables can be used to control configure itself,\r
+>      XAPIAN_CONFIG   The program to use to determine flags for\r
+>                      compiling and linking against the Xapian\r
+>                      library. [$XAPIAN_CONFIG]\r
+> +    PYTHON          Name of python command to use in\r
+> +                    configure and the test suite.\r
+>  \r
+>  Additionally, various options can be specified on the configure\r
+>  command line.\r
+> diff --git a/test/T390-python.sh b/test/T390-python.sh\r
+> index 26d0b97..c3f24f7 100755\r
+> --- a/test/T390-python.sh\r
+> +++ b/test/T390-python.sh\r
+> @@ -2,6 +2,8 @@\r
+>  test_description="python bindings"\r
+>  . ./test-lib.sh\r
+>  \r
+> +test_require_external_prereq ${NOTMUCH_PYTHON}\r
+> +\r
+>  add_email_corpus\r
+>  \r
+>  test_begin_subtest "compare thread ids"\r
+> diff --git a/test/test-lib.sh b/test/test-lib.sh\r
+> index 3466e9c..db3b6aa 100644\r
+> --- a/test/test-lib.sh\r
+> +++ b/test/test-lib.sh\r
+> @@ -621,9 +621,9 @@ test_expect_equal_json () {\r
+>      # The test suite forces LC_ALL=C, but this causes Python 3 to\r
+>      # decode stdin as ASCII.  We need to read JSON in UTF-8, so\r
+>      # override Python's stdio encoding defaults.\r
+> -    output=$(echo "$1" | PYTHONIOENCODING=utf-8 python -mjson.tool \\r
+> +    output=$(echo "$1" | PYTHONIOENCODING=utf-8 $NOTMUCH_PYTHON -mjson.tool \\r
+>          || echo "$1")\r
+> -    expected=$(echo "$2" | PYTHONIOENCODING=utf-8 python -mjson.tool \\r
+> +    expected=$(echo "$2" | PYTHONIOENCODING=utf-8 $NOTMUCH_PYTHON -mjson.tool \\r
+>          || echo "$2")\r
+>      shift 2\r
+>      test_expect_equal "$output" "$expected" "$@"\r
+> @@ -1153,14 +1153,8 @@ test_python() {\r
+>      export LD_LIBRARY_PATH=$TEST_DIRECTORY/../lib\r
+>      export PYTHONPATH=$TEST_DIRECTORY/../bindings/python\r
+>  \r
+> -    # Some distros (e.g. Arch Linux) ship Python 2.* as /usr/bin/python2,\r
+> -    # most others as /usr/bin/python. So first try python2, and fallback to\r
+> -    # python if python2 doesn't exist.\r
+> -    cmd=python2\r
+> -    [[ ${test_missing_external_prereq_[python2]} == t ]] && cmd=python\r
+> -\r
+>      (echo "import sys; _orig_stdout=sys.stdout; sys.stdout=open('OUTPUT', 'w')"; cat) \\r
+> -            | $cmd -\r
+> +            | $NOTMUCH_PYTHON -\r
+>  }\r
+>  \r
+>  test_ruby() {\r
+> @@ -1325,5 +1319,4 @@ test_declare_external_prereq emacs\r
+>  test_declare_external_prereq ${TEST_EMACSCLIENT}\r
+>  test_declare_external_prereq gdb\r
+>  test_declare_external_prereq gpg\r
+> -test_declare_external_prereq python\r
+> -test_declare_external_prereq python2\r
+> +test_declare_external_prereq ${NOTMUCH_PYTHON}\r
+> -- \r
+> 2.1.4\r
+>\r
+> _______________________________________________\r
+> notmuch mailing list\r
+> notmuch@notmuchmail.org\r
+> http://notmuchmail.org/mailman/listinfo/notmuch\r