gawk-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3653-g268904


From: John Malmberg
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3653-g268904b
Date: Wed, 13 Feb 2019 09:21:33 -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  268904b0b389cb3fe47c9a3fe7e1e81ef6566e84 (commit)
      from  db439eb8acf47c3b28d15ce239477315b8157c05 (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=268904b0b389cb3fe47c9a3fe7e1e81ef6566e84

commit 268904b0b389cb3fe47c9a3fe7e1e81ef6566e84
Author: John Malmberg <address@hidden>
Date:   Wed Feb 13 08:18:56 2019 -0600

    Fix symtab6 test in vms/vmstest.com

diff --git a/vms/ChangeLog b/vms/ChangeLog
index 44f13a5..43e1af9 100644
--- a/vms/ChangeLog
+++ b/vms/ChangeLog
@@ -1,3 +1,7 @@
+2019-02-13         John E. Malmberg      <address@hidden>
+
+       * vmstest.com: Fix for symtab6 error handlng.
+
 2019-01-09         John E. Malmberg      <address@hidden>
 
        * generate_config_h_vms_gawk.com: remove unused
diff --git a/vms/vmstest.com b/vms/vmstest.com
index fb94395..292c5f6 100644
--- a/vms/vmstest.com
+++ b/vms/vmstest.com
@@ -1675,13 +1675,24 @@ $   return
 $
 $symtab6:   echo "''test'"
 $   test_class = "gawk_ext"
+$   tmp_error = "sys$disk:[]__''test'.tmp2"
 $   set noOn
+$   if f$search(tmp_error) then delete 'tmp_error';*
+$   define/user sys$error 'tmp_error'
 $   gawk -d__'test'.tmp -f 'test'.awk
+$   gawk_status = $status
+$   if f$search("sys$disk:[]__''test'.tmp") .eqs. ""
+$   then
+$       copy 'tmp_error' sys$disk:[]__'test.tmp'
+$   else
+$       append 'tmp_error' sys$disk:[]__'test.tmp'
+$   endif
+$   if .not. gawk_status then call exit_code 'gawk_status' __'test'.tmp
 $   pipe search __'test'.tmp "ENVIRON","PROCINFO" /match=nor > _'test'.tmp
 $   cmp 'test'.ok sys$disk:[]_'test'.tmp
 $   if $status
 $   then
-$      rm _'test'.tmp;*,__'test'.tmp;*
+$      rm _'test'.tmp;*,__'test'.tmp;*,'tmp_error';*
 $      gosub junit_report_pass
 $   else
 $      gosub junit_report_fail_diff

-----------------------------------------------------------------------

Summary of changes:
 vms/ChangeLog   |  4 ++++
 vms/vmstest.com | 13 ++++++++++++-
 2 files changed, 16 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
gawk



reply via email to

[Prev in Thread] Current Thread [Next in Thread]