diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-25 19:48:11 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-01-25 19:48:11 +0200 |
commit | 271c0a2c9a4e3000684c2c61c926f2011aba6a2c (patch) | |
tree | cb33440a07f1058f8ed6d949131a95c5c0f42fe2 /test | |
parent | 521679e82cba143a0ac852cc7a246dea4d19cc56 (diff) | |
parent | 6c93e97d0f76cb688543943f64f6154be3927de5 (diff) | |
download | egawk-271c0a2c9a4e3000684c2c61c926f2011aba6a2c.tar.gz egawk-271c0a2c9a4e3000684c2c61c926f2011aba6a2c.tar.bz2 egawk-271c0a2c9a4e3000684c2c61c926f2011aba6a2c.zip |
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/lintold.awk | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 04e7f121..50258486 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2018-01-24 John E. Malmberg <wb8tyw@qsl.net> + + * lintold.awk: Minor change to allow test to run on + 32 bit VAX/VMS with out a floating overflow. + 2018-01-18 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (pty2): Instead of sed, use simpler awk goop diff --git a/test/lintold.awk b/test/lintold.awk index 698187a3..d312fc66 100644 --- a/test/lintold.awk +++ b/test/lintold.awk @@ -8,7 +8,7 @@ BEGIN { if (2 in a) a[2] **= 2; if ((2,3) in a) - a[2,3] ^= 2 ** 3 ^ 5; + a[2,3] ^= 2 ** 3 ^ 4; } BEGIN { FS = "ab" |