revert commit 1005289433447F6CA90 as it makes the system unbootable

This commit is contained in:
tg 2013-11-30 00:20:48 +00:00
parent 73106b6e75
commit fc4f36e75b
3 changed files with 29 additions and 10 deletions

32
check.t
View File

@ -1,4 +1,4 @@
# $MirOS: src/bin/mksh/check.t,v 1.635 2013/11/17 22:28:49 tg Exp $
# $MirOS: src/bin/mksh/check.t,v 1.636 2013/11/30 00:20:46 tg Exp $
# $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $
@ -31,7 +31,7 @@
# http://www.freebsd.org/cgi/cvsweb.cgi/src/tools/regression/bin/test/regress.sh?rev=HEAD
expected-stdout:
@(#)MIRBSD KSH R48 2013/11/17
@(#)MIRBSD KSH R48 2013/11/29
description:
Check version of shell.
stdin:
@ -40,7 +40,7 @@ name: KSH_VERSION
category: shell:legacy-no
---
expected-stdout:
@(#)LEGACY KSH R48 2013/11/17
@(#)LEGACY KSH R48 2013/11/29
description:
Check version of legacy shell.
stdin:
@ -2126,6 +2126,18 @@ stdin:
expected-stdout:
-bc abc bbc cbc ebc
---
name: glob-trim-1
description:
Check against a regression from fixing IFS-subst-2
stdin:
x='#foo'
print -r "before='$x'"
x=${x%%#*}
print -r "after ='$x'"
expected-stdout:
before='#foo'
after =''
---
name: heredoc-1
description:
Check ordering/content of redundent here documents.
@ -3674,8 +3686,6 @@ stdin:
x=" A : B::D"
echo -n '12:'; for i in $x ; do echo -n " [$i]" ; done ; echo
showargs 13 $x
x="X 1 2"
showargs 14 shift ${x#X}
expected-stdout:
1: [] [b] []
2: [:b::]
@ -3690,7 +3700,17 @@ expected-stdout:
<11> <h:ith:ere>
12: [A] [B] [] [D]
<13> <A> <B> <> <D>
<14> <shift> <1> <2>
---
name: IFS-subst-2
description:
Check leading whitespace after trim does not make a field
expected-fail: yes
stdin:
showargs() { for i; do echo -n " <$i>"; done; echo; }
x="X 1 2"
showargs 1 shift ${x#X}
expected-stdout:
<1> <shift> <1> <2>
---
name: integer-base-err-1
description:

3
eval.c
View File

@ -23,7 +23,7 @@
#include "sh.h"
__RCSID("$MirOS: src/bin/mksh/eval.c,v 1.144 2013/11/17 22:28:51 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/eval.c,v 1.145 2013/11/30 00:20:47 tg Exp $");
/*
* string expansion
@ -719,7 +719,6 @@ expand(
*/
x.str = trimsub(str_val(st->var),
dp, st->stype);
word = quote ? IFS_WORD : IFS_WS;
if (quote || x.str[0] != '\0')
type = XSUB;
else

4
sh.h
View File

@ -164,9 +164,9 @@
#endif
#ifdef EXTERN
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.676 2013/11/17 22:28:51 tg Exp $");
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.677 2013/11/30 00:20:48 tg Exp $");
#endif
#define MKSH_VERSION "R48 2013/11/17"
#define MKSH_VERSION "R48 2013/11/29"
/* arithmetic types: C implementation */
#if !HAVE_CAN_INTTYPES