From 0c3c44a6a7d90a26f0cab6c10451731be718876d Mon Sep 17 00:00:00 2001 From: tg Date: Tue, 29 Apr 2014 07:43:38 +0000 Subject: [PATCH] =?UTF-8?q?POSIX=20clarification=20leads=20to=20ugly=20new?= =?UTF-8?q?=20=E2=80=9Cbug=E2=80=9D=20(expected-fail,=20for=20now)=20thank?= =?UTF-8?q?s=20ormaaj=20for=20noticing=20and=20forwarding=20to=20me?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- check.t | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/check.t b/check.t index db3c483..f036d21 100644 --- a/check.t +++ b/check.t @@ -1,4 +1,4 @@ -# $MirOS: src/bin/mksh/check.t,v 1.643 2014/02/09 00:08:17 tg Exp $ +# $MirOS: src/bin/mksh/check.t,v 1.644 2014/04/29 07:43:38 tg Exp $ # OpenBSD src/regress/bin/ksh updated: 2013/12/02 20:39:44 #- # Copyright © 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, @@ -3734,6 +3734,19 @@ stdin: expected-stdout: <1> <1> <2> --- +name: IFS-arith-1 +description: + http://austingroupbugs.net/view.php?id=832 +expected-fail: yes +stdin: + ${ZSH_VERSION+false} || emulate sh + ${BASH_VERSION+set -o posix} + showargs() { for x in "$@"; do echo -n "<$x> "; done; echo .; } + IFS=0 + showargs $((1230456)) +expected-stdout: + <123> <456> . +--- name: integer-base-err-1 description: Can't have 0 base (causes shell to exit)