[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] gawk branch, master, updated. gawk-4.1.0-3896-g9ce4f70
From: |
John Malmberg |
Subject: |
[SCM] gawk branch, master, updated. gawk-4.1.0-3896-g9ce4f70 |
Date: |
Tue, 11 Feb 2020 22:27:49 -0500 (EST) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, master has been updated
via 9ce4f70b852959e8a6c244f5cff96d7f50b5594f (commit)
from abb73745d2f45437fc98d271d1db089fafc0b6a7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=9ce4f70b852959e8a6c244f5cff96d7f50b5594f
commit 9ce4f70b852959e8a6c244f5cff96d7f50b5594f
Author: John Malmberg <address@hidden>
Date: Tue Feb 11 21:26:15 2020 -0600
Fix profile5 test in vms/vmstest.com
diff --git a/vms/ChangeLog b/vms/ChangeLog
index f851c16..bc6ef03 100644
--- a/vms/ChangeLog
+++ b/vms/ChangeLog
@@ -1,4 +1,8 @@
-2020-02-11 John E. Malmberg <address@hidden>
+2020-02-11 John E. Malmberg <address@hidden>
+
+ * vmstest.com: Fix profile5 test.
+
+2020-02-11 John E. Malmberg <address@hidden>
* vmstest.com: Simplify test error handling.
diff --git a/vms/vmstest.com b/vms/vmstest.com
index 3f81175..c74ea4b 100644
--- a/vms/vmstest.com
+++ b/vms/vmstest.com
@@ -3800,7 +3800,7 @@ $ tmp_error = "_''test'.tmp2"
$ define/user GAWK_NO_PP_RUN 1
$ define/user sys$error 'tmp_error'
$ set noOn
-$ gawk --pretty-print=_'test'.tmp1 -f 'test'.awk > _NL:
+$ gawk --pretty-print=_'test'.tmp1 -f ./'test'.awk > _NL:
$ gawk_status = $status
$ set On
$ if f$search("sys$disk:[]_''test'.tmp1;2") .nes. ""
@@ -3820,7 +3820,7 @@ $ call exit_code 'gawk_status' _'test'.tmp
$ endif
$ cmp sys$disk:[]_'test'.ok sys$disk:[]_'test'.tmp
$ cmp_status = $status
-$ if .not. gawk_status then gawk_status = cmp_status
+$ if gawk_status then gawk_status = cmp_status
$ if gawk_status
$ then
$ rm _'test'.tmp;*,_'test'.ok;*,_'test'.tmp1;*
-----------------------------------------------------------------------
Summary of changes:
vms/ChangeLog | 6 +++++-
vms/vmstest.com | 4 ++--
2 files changed, 7 insertions(+), 3 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] gawk branch, master, updated. gawk-4.1.0-3896-g9ce4f70,
John Malmberg <=