diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-04 09:49:44 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-09-04 09:49:44 +0300 |
commit | 7448f28d356fc5cd8d9117111baea3a549e0930e (patch) | |
tree | f24d82d8b121d8321cfc0366dabad236d3f3dac3 /test | |
parent | a205df7903bce201577df4f7049c190e283f1ea4 (diff) | |
parent | 8beb9796b17b6ca48eb62df8fd3d31421e43c761 (diff) | |
download | egawk-7448f28d356fc5cd8d9117111baea3a549e0930e.tar.gz egawk-7448f28d356fc5cd8d9117111baea3a549e0930e.tar.bz2 egawk-7448f28d356fc5cd8d9117111baea3a549e0930e.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 6 | ||||
-rw-r--r-- | test/functab4.ok | 3 | ||||
-rw-r--r-- | test/profile2.ok | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 8f8c9c31..47835e75 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,9 @@ +2014-09-04 Arnold D. Robbins <arnold@skeeve.com> + + * profile2.ok: Update after code improvement in profiler. + * functab4.ok: Update after making indirect calls of + extension functions work. :-) + 2014-08-15 Arnold D. Robbins <arnold@skeeve.com> * badargs.ok: Adjust after revising text for -L option. diff --git a/test/functab4.ok b/test/functab4.ok index 70a520b7..8eaab508 100644 --- a/test/functab4.ok +++ b/test/functab4.ok @@ -1,3 +1,2 @@ x = chdir -gawk: functab4.awk:11: fatal: cannot (yet) call extension functions indirectly -EXIT CODE: 2 +we are now in --> /tmp diff --git a/test/profile2.ok b/test/profile2.ok index fe76a2c9..50c7e190 100644 --- a/test/profile2.ok +++ b/test/profile2.ok @@ -7,7 +7,7 @@ 1 asplit("BEGIN:END:atan2:break:close:continue:cos:delete:" "do:else:exit:exp:for:getline:gsub:if:in:index:int:" "length:log:match:next:print:printf:rand:return:sin:" "split:sprintf:sqrt:srand:sub:substr:system:while", keywords, ":") 1 split("00:00:00:00:00:00:00:00:00:00:" "20:10:10:12:12:11:07:00:00:00:" "08:08:08:08:08:33:08:00:00:00:" "08:44:08:36:08:08:08:00:00:00:" "08:44:45:42:42:41:08", machine, ":") 1 state = 1 - 571 for (; ; ) { + 571 for (;;) { 571 symb = lex() 571 nextstate = substr(machine[state symb], 1, 1) 571 act = substr(machine[state symb], 2, 1) @@ -109,7 +109,7 @@ 571 function lex() { - 1702 for (; ; ) { + 1702 for (;;) { 1702 if (tok == "(eof)") { return 7 } |