diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-02-26 21:39:07 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-02-26 21:39:07 +0200 |
commit | bbbfd0cb5661d96fce8ee9d0323405655a120060 (patch) | |
tree | a2ebf874e3aade473de271d6f1c55e09f75f8196 | |
parent | b9c2fcae11dfad44c49330016f623fdb46056e5e (diff) | |
download | egawk-bbbfd0cb5661d96fce8ee9d0323405655a120060.tar.gz egawk-bbbfd0cb5661d96fce8ee9d0323405655a120060.tar.bz2 egawk-bbbfd0cb5661d96fce8ee9d0323405655a120060.zip |
Sorted-in fix and repair vms/vmstest.com.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | eval.c | 1 | ||||
-rw-r--r-- | vms/vmstest.com | 11 |
3 files changed, 10 insertions, 6 deletions
@@ -1,3 +1,7 @@ +Fri Feb 25 17:34:14 2011 Pat Rankin <rankin@patechdata.com> + + * eval (sorted_in): Remove incorrect unref() call. + Wed Feb 23 21:48:20 2011 Arnold D. Robbins <arnold@skeeve.com> * main (main): Free extra_stack, to make valgrind happier. @@ -1292,7 +1292,6 @@ sorted_in(void) } got_func: - unref(r); if (IGNORECASE) { if (sort_func == sort_up_index_str) sort_func = sort_up_index_ignrcase; diff --git a/vms/vmstest.com b/vms/vmstest.com index 4340d182..32a7662e 100644 --- a/vms/vmstest.com +++ b/vms/vmstest.com @@ -92,9 +92,9 @@ $ $gnu: $gawk_ext: echo "gawk_ext... (gawk.extensions)" $ list = "aadelete1 aadelete2 aarray1 aasort" - - + " aasorti argtest backw badargs beginfile1 binmode1" - - + " clos1way devfd devfd1 devfd2 dumpvars fieldwdth" - - + " fpat1 funlen fsfwfs fwtest fwtest2 gensub" - + + " aasorti argtest backw badargs beginfile1 binmode1" - + + " clos1way devfd devfd1 devfd2 dumpvars fieldwdth" - + + " fpat1 funlen fsfwfs fwtest fwtest2 gensub" - + " gensub2 getlndir gnuops2 gnuops3 gnureops icasefs" - + " icasers igncdym igncfs ignrcase ignrcas2" $ gosub list_of_tests @@ -103,7 +103,7 @@ $ list = "indirectcall lint lintold lintwarn match1" - + " nondec2 patsplit posix profile1 procinfs printfbad1" - + " printfbad2 regx8bit rebuf reint reint2 rsstart1" - + " rsstart2 rsstart3 rstest6 shadow sortfor" - - + " splitarg4 strtonum strftime switch2" + + " splitarg4 strtonum strftime switch2" $ gosub list_of_tests $ return $ @@ -1383,7 +1383,8 @@ $ ! when subdirectories no/ and no/such/ don't exist; $ ! vms test suite doesn't generate Makefile; $ ! "is a directory" and "no such file" aren't capitalized $ ! gawk -f beginfile1.awk beginfile1.awk . ./no/such/file "Makefile" >_beginfile1.tmp 2>&1 -$ gawk -f beginfile1.awk beginfile1.awk [] ./no-such-file "Makefile.in" >_beginfile1.tmp 2>&1 + $ gawk -f - _beginfile1.tmp >_beginfile1.too +$ gawk -f beginfile1.awk beginfile1.awk [] ./no-such-file "Makefile.in" >_beginfile1.tmp 2>&1 +$ gawk -f - _beginfile1.tmp >_beginfile1.too { if (gsub("\\[\\]",".")) gsub("no such file or directory","is a directory") gsub("no-such-file","file"); gsub("Makefile.in","Makefile"); print } $ rm _beginfile1.tmp; |