From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28401 invoked by alias); 22 Nov 2015 22:05:29 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 37199 Received: (qmail 6978 invoked from network); 22 Nov 2015 22:05:28 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:to:subject:mime-version:content-type; bh=NK1LSQzIgWkgkkInnobfRcn//TDGZd1uQVCt7R40tW4=; b=wTYXT8aK4Nll+Xdh02jM0z90R8YjdzXZ0q+q5k2Xs637q56bohhKBqpB0FTXf7xVqd YrIUWMb7B4evG7ZekPCRMcoaOEal9bYwg/OD29k3j7RdHrB4ipvBCekIENQQ0st73bML 7J3JAk4d69UHTrEouO9lnXOz8Uo/XUksvh6svES2aPF+Q7Iwd7IYk3kFb2BhcxYiRcyO Lku6LXZftAu34uEuMfwIPRjQPw4GDZqQr2V8Ua8wmgaxz6wB4Dd6NjuMxCApH9vjZ1lY 8JzekD5qISP78/oRsdYfThg07Cv6c9wnPKEUL6YeEm8KC0lAQDZ3EEDp9ODDbK93VrJ2 SMyg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:to:subject:mime-version :content-type; bh=NK1LSQzIgWkgkkInnobfRcn//TDGZd1uQVCt7R40tW4=; b=eEQe4z66ZBoC2me2UYYlav+yAOSCbB6JvRo3bBIgrVa54Fs0Xi9Pn2Kz0KuXVQOE/V 8uNjZkTydIQ8guJk3OKDFB735MbmjqZWAy7m4NVuRJfJvL99Kwqn7SDbbLbK7YmzyzOC jfZGSuxt6zB2jfTxouINOg7oYQUZCKWbpITcx9X37JQMfdqeF36peIXtPRGAyePGccxo Kt1NylofgBM1Rbw8hgTtx/XB2AXIU226SS+S4P29sFkVSlRhPAlUDqS7yYyXXovSTevy 27zzlJO/m0VtDkYQ9lpO1Yn+yk9SxhaDaRknrDnzMiJ1v1/hQ8ekX7BCwSoVMqFxfxr1 miLg== X-Gm-Message-State: ALoCoQl+s09etnjMSrtjm4WsNovrmd7flbkp805kPBh1Thquk+EdclSkwyrR8oOb2BkrdpGUXJO7 X-Received: by 10.98.69.7 with SMTP id s7mr12105574pfa.28.1448229926385; Sun, 22 Nov 2015 14:05:26 -0800 (PST) From: Bart Schaefer Message-Id: <151122140533.ZM19350@torch.brasslantern.com> Date: Sun, 22 Nov 2015 14:05:33 -0800 X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: Test syntax documentation in B01cd is wrong? MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii The comment says: # The first line (only) of a '>' and '?' chunk may be preceded by a '*', # so the line starts '*>' or '*?'. This signifies that all lines in the # chunk (not just the one with the '*' in front) in the actual output # are pattern matched against the corresponding lines in the test # output. But in fact it appears you have to start EVERY line that needs to be pattern matched with "*>" or "*?" -- see, for example, in A02alias: 0:Aliasing reserved tokens >begin >end *>*5*{ begin *>*6*{end Not only is that not *> on the first line, but there are two lines with the leading splat. Similarly in B06fc.