diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-07-31 20:29:38 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-07-31 20:29:38 +0300 |
commit | d60fb05cc5db4f1ee1176a9ed7f053011f8521aa (patch) | |
tree | 2471e5d7757a3aad0f9fbf6722964a30ae1b01ee /test | |
parent | cafa8fcd5a5d593f4638b199fbf5f94a006a4aac (diff) | |
parent | 54146e27c8fd7756a944d0e168aa969624567b55 (diff) | |
download | egawk-d60fb05cc5db4f1ee1176a9ed7f053011f8521aa.tar.gz egawk-d60fb05cc5db4f1ee1176a9ed7f053011f8521aa.tar.bz2 egawk-d60fb05cc5db4f1ee1176a9ed7f053011f8521aa.zip |
Merge branch 'master' into comment
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 9 | ||||
-rw-r--r-- | test/badargs.ok | 2 | ||||
-rw-r--r-- | test/printhuge.awk | 2 | ||||
-rw-r--r-- | test/printhuge.ok | 2 |
4 files changed, 12 insertions, 3 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index cc921277..ed673d8c 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,12 @@ +2014-07-25 Arnold D. Robbins <arnold@skeeve.com> + + * printhuge.awk: Add a newline to output. + * printhuge.ok: Adjust. + +2014-07-24 Arnold D. Robbins <arnold@skeeve.com> + + * badargs.ok: Adjust after correctly alphabetizing options. + 2014-07-10 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (printhuge): New test. diff --git a/test/badargs.ok b/test/badargs.ok index 1be81ec3..8d34be1f 100644 --- a/test/badargs.ok +++ b/test/badargs.ok @@ -18,9 +18,9 @@ Short options: GNU long options: (extensions) -i includefile --include=includefile -l library --load=library -L [fatal] --lint[=fatal] - -n --non-decimal-data -M --bignum -N --use-lc-numeric + -n --non-decimal-data -o[file] --pretty-print[=file] -O --optimize -p[file] --profile[=file] diff --git a/test/printhuge.awk b/test/printhuge.awk index 4d4fb7d4..1de27ecc 100644 --- a/test/printhuge.awk +++ b/test/printhuge.awk @@ -1,3 +1,3 @@ BEGIN { - printf("%c", sprintf("%c", (0xffffff00+255))) + printf("%c\n", sprintf("%c", (0xffffff00+255))) } diff --git a/test/printhuge.ok b/test/printhuge.ok index ce542efa..29e181eb 100644 --- a/test/printhuge.ok +++ b/test/printhuge.ok @@ -1 +1 @@ -ÿ
\ No newline at end of file +ÿ |