diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-04 20:17:58 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-04 20:17:58 +0200 |
commit | e2689025d04e2b4e2fbaf5ed0c61168008b54750 (patch) | |
tree | 6050b8ca482697d2427418a0fc3d7b729b908a68 /pc | |
parent | c75db7e349a275c1511ec678c95a525aff86d00f (diff) | |
parent | eba66f4cd899ccbefa242420fd157d30202b2fa9 (diff) | |
download | egawk-e2689025d04e2b4e2fbaf5ed0c61168008b54750.tar.gz egawk-e2689025d04e2b4e2fbaf5ed0c61168008b54750.tar.bz2 egawk-e2689025d04e2b4e2fbaf5ed0c61168008b54750.zip |
Merge branch 'gawk-4.2-stable'
Diffstat (limited to 'pc')
-rw-r--r-- | pc/ChangeLog | 6 | ||||
-rw-r--r-- | pc/Makefile.tst | 7 |
2 files changed, 12 insertions, 1 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 1f2d00dd..98b92d0a 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,9 @@ +2018-02-03 Eli Zaretskii <eliz@gnu.org> + + * Makefile.tst (BASIC_TESTS): Add numstr1. + (numindex): New test. Reported by Scott Deifik + <scottd.mail@sbcglobal.net>. + 2018-01-26 Eli Zaretskii <eliz@gnu.org> * Makefile.tst (nlstringtest): Expected failure on MinGW when not diff --git a/pc/Makefile.tst b/pc/Makefile.tst index e850d2d4..f0d13415 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -165,7 +165,7 @@ BASIC_TESTS = \ manglprm math membug1 memleak messages minusstr mmap8k mtchi18n \ nasty nasty2 negexp negrange nested nfldstr nfloop nfneg nfset nlfldsep \ nlinstr nlstrina noeffect nofile nofmtch noloop1 noloop2 nonl noparms \ - nors nulinsrc nulrsend numindex numsubstr \ + nors nulinsrc nulrsend numindex numstr1 numsubstr \ octsub ofmt ofmta ofmtbig ofmtfidl ofmts ofmtstrnum ofs1 onlynl \ opasnidx opasnslf \ paramasfunc1 paramasfunc2 paramdup paramres paramtyp paramuninitglobal \ @@ -2045,6 +2045,11 @@ numindex: @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ +numstr1: + @echo $@ + @AWKPATH="$(srcdir)" $(AWK) -f $@.awk >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ + @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ + numsubstr: @echo $@ @AWKPATH="$(srcdir)" $(AWK) -f $@.awk < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ |