Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 8F33A418C38 for ; Wed, 9 Jun 2010 23:48:55 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -1.9 X-Spam-Level: X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id y-d3CrMqO5vo for ; Wed, 9 Jun 2010 23:48:35 -0700 (PDT) Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36]) by olra.theworths.org (Postfix) with ESMTP id A9C21431FC1 for ; Wed, 9 Jun 2010 23:48:34 -0700 (PDT) Received: from localhost (unknown [192.168.200.4]) by max.feld.cvut.cz (Postfix) with ESMTP id 44FF619F33ED; Thu, 10 Jun 2010 08:48:33 +0200 (CEST) X-Virus-Scanned: IMAP AMAVIS Received: from max.feld.cvut.cz ([192.168.200.1]) by localhost (styx.feld.cvut.cz [192.168.200.4]) (amavisd-new, port 10044) with ESMTP id wMS83cF9YJhP; Thu, 10 Jun 2010 08:48:31 +0200 (CEST) Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34]) by max.feld.cvut.cz (Postfix) with ESMTP id B66CC19F33E1; Thu, 10 Jun 2010 08:48:31 +0200 (CEST) Received: from steelpick.2x.cz (k335-30.felk.cvut.cz [147.32.86.30]) (Authenticated sender: sojkam1) by imap.feld.cvut.cz (Postfix) with ESMTPSA id AE65015C062; Thu, 10 Jun 2010 08:48:31 +0200 (CEST) Received: from wsh by steelpick.2x.cz with local (Exim 4.72) (envelope-from ) id 1OMbZ0-0000JP-W6; Thu, 10 Jun 2010 08:48:31 +0200 From: Michal Sojka To: notmuch@notmuchmail.org Subject: [PATCH v3 0/5] Git-based modularization of test suite Date: Thu, 10 Jun 2010 08:47:59 +0200 Message-Id: <1276152484-1164-1-git-send-email-sojkam1@fel.cvut.cz> X-Mailer: git-send-email 1.7.1.3.g75e44 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jun 2010 06:48:55 -0000 Hi, this is an updated version of v2 (id:1273510084-19896-1-git-send-email-sojkam1@fel.cvut.cz). It includes all test suite changes which were done in master since v2. Also a few minor bugs was fixed since v2, namely: - Messages are generated with UTC time zone by default - Unnecessary \n was remvoved from the title in t0005-reply.sh Michal Sojka (5): Copy test framework from Git Update test framework for use with notmuch test: Update helper functions Convert the actual tests to the new framework test: Set all times to UTC test/Makefile | 49 ++ test/README | 299 +++++++++ test/aggregate-results.sh | 34 + test/notmuch-test | 1190 +--------------------------------- test/t0000-basic.sh | 88 +++ test/t0001-new.sh | 164 +++++ test/t0002-search.sh | 111 ++++ test/t0003-json.sh | 46 ++ test/t0004-thread-naming.sh | 191 ++++++ test/t0005-reply.sh | 137 ++++ test/t0006-dump-restore.sh | 30 + test/t0007-uuencode.sh | 36 + test/t0008-threading-out-of-order.sh | 31 + test/t0009-author-reordering.sh | 35 + test/t0010-from-line-heuristics.sh | 215 ++++++ test/t0011-long-msgid.sh | 29 + test/t0012-encoding-issues.sh | 25 + test/test-lib.sh | 913 ++++++++++++++++++++++++++ 18 files changed, 2435 insertions(+), 1188 deletions(-) create mode 100644 test/Makefile create mode 100644 test/README create mode 100755 test/aggregate-results.sh create mode 100755 test/t0000-basic.sh create mode 100755 test/t0001-new.sh create mode 100755 test/t0002-search.sh create mode 100755 test/t0003-json.sh create mode 100755 test/t0004-thread-naming.sh create mode 100755 test/t0005-reply.sh create mode 100755 test/t0006-dump-restore.sh create mode 100755 test/t0007-uuencode.sh create mode 100755 test/t0008-threading-out-of-order.sh create mode 100755 test/t0009-author-reordering.sh create mode 100755 test/t0010-from-line-heuristics.sh create mode 100755 test/t0011-long-msgid.sh create mode 100755 test/t0012-encoding-issues.sh create mode 100644 test/test-lib.sh