From 82f7d0670e0db8f813a0bece05b0b9b3e0e7b265 Mon Sep 17 00:00:00 2001 From: Dmitry Kurochkin Date: Mon, 4 Jul 2011 05:59:02 +0400 Subject: [PATCH] [PATCH 2/3] test: improve known broken tests support --- 0f/f310cb8b122c08f3a80ef707e0495203f3a02c | 211 ++++++++++++++++++++++ 1 file changed, 211 insertions(+) create mode 100644 0f/f310cb8b122c08f3a80ef707e0495203f3a02c diff --git a/0f/f310cb8b122c08f3a80ef707e0495203f3a02c b/0f/f310cb8b122c08f3a80ef707e0495203f3a02c new file mode 100644 index 000000000..ea239fa73 --- /dev/null +++ b/0f/f310cb8b122c08f3a80ef707e0495203f3a02c @@ -0,0 +1,211 @@ +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 82D18431FB6 + for ; Sun, 3 Jul 2011 19:00:33 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -0.799 +X-Spam-Level: +X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 + tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, + FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled +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 Q+R+u5PKW-N5 for ; + Sun, 3 Jul 2011 19:00:32 -0700 (PDT) +Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com + [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 2C7F5431FD0 + for ; Sun, 3 Jul 2011 19:00:32 -0700 (PDT) +Received: by mail-bw0-f53.google.com with SMTP id 12so4396763bwg.26 + for ; Sun, 03 Jul 2011 19:00:31 -0700 (PDT) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; + h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; + bh=Q69nW/X1GjQSSubDoOfpua8h4YUCUaNunihsreXWxuc=; + b=au1qIlLbKiNU/2ApM6rcr8LiaF/gWFWSMIcnIT9S7rn+x/o2hmekLJ+I+lTHVgJt9W + OnRyticL0SeaIZh/MA+cbX2aqYeeJB/jWYNhlyfeGbNcSH0FZr1OeAhQHfH2ztBIQBex + xKdoABoj6I8Fqn1wKsT5KH7/ubLUOlWah475E= +Received: by 10.204.19.19 with SMTP id y19mr4970270bka.164.1309744831406; + Sun, 03 Jul 2011 19:00:31 -0700 (PDT) +Received: from localhost ([91.144.186.21]) + by mx.google.com with ESMTPS id e6sm5101585bka.23.2011.07.03.19.00.29 + (version=TLSv1/SSLv3 cipher=OTHER); + Sun, 03 Jul 2011 19:00:30 -0700 (PDT) +From: Dmitry Kurochkin +To: notmuch@notmuchmail.org +Subject: [PATCH 2/3] test: improve known broken tests support +Date: Mon, 4 Jul 2011 05:59:02 +0400 +Message-Id: <1309744743-8556-2-git-send-email-dmitry.kurochkin@gmail.com> +X-Mailer: git-send-email 1.7.5.4 +In-Reply-To: <1309744743-8556-1-git-send-email-dmitry.kurochkin@gmail.com> +References: <1309744743-8556-1-git-send-email-dmitry.kurochkin@gmail.com> +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: Mon, 04 Jul 2011 02:00:33 -0000 + +There is existing support for broken tests. But it is not convenient +to use. The primary issue is that we have to maintain a set of +test_expect_*_failure functions which are equivalent to the normal +test_expect_* counterparts except for what functions are called for +result reporting. The patch adds test_subtest_known_broken function +which marks a subset as broken, making the normal test_expect_* +functions behave as test_expect_*_failure. All test_expect_*_failure +functions are removed. Test_known_broken_failure_ is changed to +format details the same way as test_failure_ does. + +Another benefit of this change is that the diff when a broken test is +fixed would be small and nice. + +Documentation is updated accordingly. +--- + test/README | 17 ++++++++--------- + test/test-lib.sh | 53 +++++++++++++++-------------------------------------- + 2 files changed, 23 insertions(+), 47 deletions(-) + +diff --git a/test/README b/test/README +index a245bf1..f926b9f 100644 +--- a/test/README ++++ b/test/README +@@ -132,20 +132,19 @@ library for your script to use. +