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 4F04C431FBC for ; Sat, 10 Nov 2012 12:18:23 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] 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 BfCsfwuZH4ul for ; Sat, 10 Nov 2012 12:18:22 -0800 (PST) Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34]) by olra.theworths.org (Postfix) with ESMTP id 93AA1431FAF for ; Sat, 10 Nov 2012 12:18:22 -0800 (PST) Received: from guru.guru-group.fi (localhost [IPv6:::1]) by guru.guru-group.fi (Postfix) with ESMTP id 72FA9100094; Sat, 10 Nov 2012 22:18:21 +0200 (EET) From: Tomi Ollila To: David Bremner , notmuch@notmuchmail.org Subject: Re: [PATCH] test: expand regex in test/basic In-Reply-To: <87txsxi72t.fsf@zancas.localnet> References: <1352575867-12157-1-git-send-email-david@tethera.net> <87txsxi72t.fsf@zancas.localnet> User-Agent: Notmuch/0.14+84~g8a199bf (http://notmuchmail.org) Emacs/24.2.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain 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: Sat, 10 Nov 2012 20:18:23 -0000 On Sat, Nov 10 2012, David Bremner wrote: > david@tethera.net writes: > >> -available=$(find "$TEST_DIRECTORY" -maxdepth 1 -type f -perm +111 | \ >> - sed -r -e "s,.*/,," -e "/^(aggregate-results.sh|notmuch-test|smtp-dummy|test-verbose|symbol-test|arg-test|parse-time)$/d" | \ >> + >> + >> +available=$(find "$TEST_DIRECTORY" -maxdepth 1 -type f -perm +111 \ > > Umm. I thought I killed those blank lines. Pretend they're not there ;). Great idea -- I suggest you restore the use of | sed 's,.*,,' | instead of that basename, though. > d Tomi