diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/asortbool.awk | 4 | ||||
-rw-r--r-- | test/functab5.ok | 2 | ||||
-rw-r--r-- | test/id.ok | 2 | ||||
-rw-r--r-- | test/rwarray.awk | 2 | ||||
-rw-r--r-- | test/symtab11.ok | 2 |
6 files changed, 11 insertions, 6 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 6ae679e5..7198c0fe 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2021-05-02 Arnold D. Robbins <arnold@skeeve.com> + + * asortbool.awk, functab5.ok, id.ok, rwarrray.awk, + symtab11.ok: Revise after code changes. + 2021-04-28 Arnold D. Robbins <arnold@skeeve.com> * asortbool.ok: Revise after code changes. diff --git a/test/asortbool.awk b/test/asortbool.awk index 7f5a94fb..3ee02cb2 100644 --- a/test/asortbool.awk +++ b/test/asortbool.awk @@ -3,8 +3,8 @@ BEGIN { a[2] = -45 a[3] = 45 a[4][1] = 47 - a[5] = bool(1) - a[6] = bool(0) + a[5] = mkbool(1) + a[6] = mkbool(0) asort(a, b, "@val_type_asc") diff --git a/test/functab5.ok b/test/functab5.ok index ef110989..d27f1393 100644 --- a/test/functab5.ok +++ b/test/functab5.ok @@ -3,7 +3,6 @@ asort' asorti' atan2' bindtextdomain' -bool' chdir' close' compl' @@ -22,6 +21,7 @@ length' log' lshift' match' +mkbool' mktime' or' patsplit' @@ -34,7 +34,6 @@ asort -> builtin asorti -> builtin atan2 -> builtin bindtextdomain -> builtin -bool -> builtin close -> builtin compl -> builtin cos -> builtin @@ -53,6 +52,7 @@ length -> builtin log -> builtin lshift -> builtin match -> builtin +mkbool -> builtin mktime -> builtin or -> builtin patsplit -> builtin diff --git a/test/rwarray.awk b/test/rwarray.awk index b868fa45..eae22304 100644 --- a/test/rwarray.awk +++ b/test/rwarray.awk @@ -12,7 +12,7 @@ BEGIN { dict[strnum_sub] = f[1] bool_sub = "bool-sub" - dict[bool_sub] = bool(1) + dict[bool_sub] = mkbool(1) n = asorti(dict, dictindices) for (i = 1; i <= n; i++) diff --git a/test/symtab11.ok b/test/symtab11.ok index da2cfcba..c46d3aed 100644 --- a/test/symtab11.ok +++ b/test/symtab11.ok @@ -37,7 +37,6 @@ BEGIN -- Functab is next [asorti] = asorti [atan2] = atan2 [bindtextdomain] = bindtextdomain -[bool] = bool [close] = close [compl] = compl [cos] = cos @@ -54,6 +53,7 @@ BEGIN -- Functab is next [log] = log [lshift] = lshift [match] = match +[mkbool] = mkbool [mktime] = mktime [or] = or [patsplit] = patsplit |