diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-12 18:15:18 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-12 18:15:18 +0300 |
commit | d389d4cd9e2d75159f69a23bfa6d038f74502b12 (patch) | |
tree | 54a67069f473d69f4f5de76b01f69081121ec4ef /test | |
parent | 8110b4b66d9bf0f94b4595aadd4e9439df526fa5 (diff) | |
download | egawk-d389d4cd9e2d75159f69a23bfa6d038f74502b12.tar.gz egawk-d389d4cd9e2d75159f69a23bfa6d038f74502b12.tar.bz2 egawk-d389d4cd9e2d75159f69a23bfa6d038f74502b12.zip |
Fix issues with function ordering in pretty printed output. Add doc.
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 4 | ||||
-rw-r--r-- | test/nsprof1.ok | 2 | ||||
-rw-r--r-- | test/nsprof2.ok | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index a8b6e9a2..73f77217 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,7 @@ +2020-08-12 Arnold D. Robbins <arnold@skeeve.com> + + * nsprof1.ok, nsprof2.ok: Updated after code changes. + 2020-08-04 Arnold D. Robbins <arnold@skeeve.com> Simplify handling of tests that have an -mpfr.ok file. diff --git a/test/nsprof1.ok b/test/nsprof1.ok index eacc2707..cbd82cc5 100644 --- a/test/nsprof1.ok +++ b/test/nsprof1.ok @@ -1,3 +1,4 @@ + @namespace "foo" BEGIN { @@ -10,6 +11,7 @@ BEGIN { print "bar" } + @namespace "stuff" diff --git a/test/nsprof2.ok b/test/nsprof2.ok index 5c3e27ab..1fa220d7 100644 --- a/test/nsprof2.ok +++ b/test/nsprof2.ok @@ -5,10 +5,13 @@ # Revised October 2000 # Revised December 2010 # Revised July 2017 + @namespace "foo" # this is foo + @namespace "bar" # this is bar + @namespace "passwd" # move to passwd namespace BEGIN { |