~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/Makefile.in

  • Committer: Arnold D. Robbins
  • Date: 2019-04-07 18:43:38 UTC
  • Revision ID: git-v1:8ae4556cd755b7902afba7ab89313d5aa8801173
Single-byte locales use locale settings for ignoring case.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1205
1205
        range1.awk \
1206
1206
        range1.in \
1207
1207
        range1.ok \
 
1208
        range2.awk \
 
1209
        range2.ok \
1208
1210
        readbuf.awk \
1209
1211
        readbuf.ok \
1210
1212
        readdir.awk \
1560
1562
        paramasfunc1 paramasfunc2 paramdup paramres paramtyp paramuninitglobal \
1561
1563
        parse1 parsefld parseme pcntplus posix2008sub prdupval prec printf0 \
1562
1564
        printf1 printfchar prmarscl prmreuse prt1eval prtoeval \
1563
 
        rand randtest range1 readbuf rebrackloc rebt8b1 rebuild redfilnm regeq \
 
1565
        rand randtest range1 range2 readbuf rebrackloc rebt8b1 rebuild redfilnm regeq \
1564
1566
        regexpbrack regexpbrack2 regexprange regrange reindops reparse resplit \
1565
1567
        rri1 rs rscompat rsnul1nl rsnulbig rsnulbig2 rstest1 rstest2 rstest3 \
1566
1568
        rstest4 rstest5 rswhite \
1683
1685
 
1684
1686
# Lists of tests that need particular locales
1685
1687
NEED_LOCALE_C = \
1686
 
        clos1way gsubtst6
 
1688
        clos1way gsubtst6 range2
1687
1689
 
1688
1690
NEED_LOCALE_EN = \
1689
1691
        backbigs1 backsmalls1 backsmalls2 concat4 dfamb1 ignrcas2 lc_num1 \
3584
3586
        @AWKPATH="$(srcdir)" $(AWK) -f $@.awk  < "$(srcdir)"/$@.in >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
3585
3587
        @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
3586
3588
 
 
3589
range2:
 
3590
        @echo $@
 
3591
        @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=C; export GAWKLOCALE; \
 
3592
        AWKPATH="$(srcdir)" $(AWK) -f $@.awk  >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@
 
3593
        @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@
 
3594
 
3587
3595
readbuf:
3588
3596
        @echo $@
3589
3597
        @AWKPATH="$(srcdir)" $(AWK) -f $@.awk  >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@