bump; add testcase provided by @mvdan on github
This commit is contained in:
parent
5c920fe4db
commit
1474437b57
15
check.t
15
check.t
|
@ -1,4 +1,4 @@
|
|||
# $MirOS: src/bin/mksh/check.t,v 1.800 2017/12/15 13:35:34 tg Exp $
|
||||
# $MirOS: src/bin/mksh/check.t,v 1.801 2018/01/14 01:47:33 tg Exp $
|
||||
# -*- mode: sh -*-
|
||||
#-
|
||||
# Copyright © 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
|
||||
|
@ -30,7 +30,7 @@
|
|||
# (2013/12/02 20:39:44) http://cvsweb.openbsd.org/cgi-bin/cvsweb/src/regress/bin/ksh/?sortby=date
|
||||
|
||||
expected-stdout:
|
||||
@(#)MIRBSD KSH R56 2017/10/17
|
||||
@(#)MIRBSD KSH R56 2018/01/14
|
||||
description:
|
||||
Check base version of full shell
|
||||
stdin:
|
||||
|
@ -39,7 +39,7 @@ name: KSH_VERSION
|
|||
category: !shell:legacy-yes
|
||||
---
|
||||
expected-stdout:
|
||||
@(#)LEGACY KSH R56 2017/10/17
|
||||
@(#)LEGACY KSH R56 2018/01/14
|
||||
description:
|
||||
Check base version of legacy shell
|
||||
stdin:
|
||||
|
@ -9026,6 +9026,15 @@ expected-stdout:
|
|||
.c:a b.c d..:
|
||||
.d:a b.c d..:
|
||||
---
|
||||
name: arrassign-eol
|
||||
description:
|
||||
Commands after array assignments are not permitted
|
||||
stdin:
|
||||
foo=(a b) env
|
||||
expected-exit: e != 0
|
||||
expected-stderr-pattern:
|
||||
/syntax error: unexpected 'env'/
|
||||
---
|
||||
name: arrassign-fnc-none
|
||||
description:
|
||||
Check locality of array access inside a function
|
||||
|
|
4
sh.h
4
sh.h
|
@ -182,9 +182,9 @@
|
|||
#endif
|
||||
|
||||
#ifdef EXTERN
|
||||
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.857 2018/01/14 01:44:02 tg Exp $");
|
||||
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.858 2018/01/14 01:47:36 tg Exp $");
|
||||
#endif
|
||||
#define MKSH_VERSION "R56 2017/10/17"
|
||||
#define MKSH_VERSION "R56 2018/01/14"
|
||||
|
||||
/* arithmetic types: C implementation */
|
||||
#if !HAVE_CAN_INTTYPES
|
||||
|
|
Loading…
Reference in New Issue