From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21144 invoked by alias); 22 Feb 2012 13:59:55 -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: 30254 Received: (qmail 5799 invoked from network); 22 Feb 2012 13:59:53 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_LOW,T_DKIM_INVALID autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.213.43 as permitted sender) Received-SPF: pass (google.com: domain of ethersoft@gmail.com designates 10.60.28.36 as permitted sender) client-ip=10.60.28.36; Authentication-Results: mr.google.com; spf=pass (google.com: domain of ethersoft@gmail.com designates 10.60.28.36 as permitted sender) smtp.mail=ethersoft@gmail.com; dkim=pass header.i=ethersoft@gmail.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:sender:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=kOJqgdmml/a3MLxXf9R/18KhVvbf/JRnPmFPksAfE6Y=; b=xtgi0oBujieda5HD+ZTgxap0IpDIXUmhIrZsilChcbmGMBOcL9WQ0dwEA97p6J1bxp eqY/JCYsvPo8hBlZkRkVUJ6cHUJvZWNcjZ1IRO+/wGiYcBaxxYvhaObCMgdoCa0o6+02 gJ9ShZTmuvyDuP0tNVxt9WtYbk/8zLfdzx3CE= MIME-Version: 1.0 Sender: ethersoft@gmail.com Date: Wed, 22 Feb 2012 08:59:47 -0500 X-Google-Sender-Auth: GY6eo36iAzROYnbw-r4ZVZj311g Message-ID: Subject: New test failure From: Vin Shelton To: zsh-workers@zsh.org Content-Type: text/plain; charset=ISO-8859-1 I didn't follow the discussion closely, but I think the recent shwordsplit changes require a test update: Running test: SH_WORD_SPLIT inside $(...) inside ${...} *** /tmp/zsh.ztst.out.31468 Wed Feb 22 08:49:19 2012 --- /tmp/zsh.ztst.tout.31468 Wed Feb 22 08:49:19 2012 *************** *** 1 **** ! _'one' 'two' 'three'_ --- 1,3 ---- ! _'one' ! 'two' ! 'three'_ Test /opt/src/zsh-2012-02-22/Test/D04parameter.ztst failed: output differs from expected as shown above for: (setopt shwordsplit # ensure this doesn't get set in main shell... test_splitting () { array="one two three" for e in $array; do echo "'$e'" done } test_split_var= : ${test_split_var:=$(test_splitting)} echo "_${test_split_var}_") Was testing: SH_WORD_SPLIT inside $(...) inside ${...} /opt/src/zsh-2012-02-22/Test/D04parameter.ztst: test failed. - Vin