diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-01 09:06:16 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2018-02-01 09:06:16 +0200 |
commit | 77f429c6b5b0781645b9ee19e7f4369e0fe113a1 (patch) | |
tree | 3fc45ec4978a62b6a2c34584f868800650344524 | |
parent | 4671bc0a324834d6bc0a5709076679692434161a (diff) | |
download | egawk-77f429c6b5b0781645b9ee19e7f4369e0fe113a1.tar.gz egawk-77f429c6b5b0781645b9ee19e7f4369e0fe113a1.tar.bz2 egawk-77f429c6b5b0781645b9ee19e7f4369e0fe113a1.zip |
Improve locale independence of the tests.
-rw-r--r-- | test/ChangeLog | 5 | ||||
-rw-r--r-- | test/Makefile.am | 4 | ||||
-rw-r--r-- | test/Makefile.in | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index 50258486..c5c0f7ee 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2018-02-01 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (AWK): Move LANGUAGE= to here instead of + having it in individual tests. + 2018-01-24 John E. Malmberg <wb8tyw@qsl.net> * lintold.awk: Minor change to allow test to run on diff --git a/test/Makefile.am b/test/Makefile.am index 1ef52600..b0b2baa1 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -1355,7 +1355,7 @@ VALGRIND = # # And we set AWKLIBPATH to find the extension libraries we built. -LOCALES = LC_ALL=$${GAWKLOCALE:-C} LANG=$${GAWKLOCALE:-C} +LOCALES = LANGUAGE= LC_ALL=$${GAWKLOCALE:-C} LANG=$${GAWKLOCALE:-C} AWK = $(LOCALES) AWKLIBPATH=../extension/.libs $(VALGRIND) $(AWKPROG) # Message stuff is to make it a little easier to follow. @@ -2466,7 +2466,7 @@ nonfatal1: nlstringtest:: @echo $@ - @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=fr_FR.UTF-8 LANGUAGE= ; \ + @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=fr_FR.UTF-8 ; \ AWKPATH="$(srcdir)" $(AWK) -f $@.awk "$(srcdir)" >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ diff --git a/test/Makefile.in b/test/Makefile.in index aa0d7655..1a64147e 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -1610,7 +1610,7 @@ VALGRIND = # # And we set AWKLIBPATH to find the extension libraries we built. -LOCALES = LC_ALL=$${GAWKLOCALE:-C} LANG=$${GAWKLOCALE:-C} +LOCALES = LANGUAGE= LC_ALL=$${GAWKLOCALE:-C} LANG=$${GAWKLOCALE:-C} all: all-am .SUFFIXES: @@ -2902,7 +2902,7 @@ nonfatal1: nlstringtest:: @echo $@ - @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=fr_FR.UTF-8 LANGUAGE= ; \ + @[ -z "$$GAWKLOCALE" ] && GAWKLOCALE=fr_FR.UTF-8 ; \ AWKPATH="$(srcdir)" $(AWK) -f $@.awk "$(srcdir)" >_$@ 2>&1 || echo EXIT CODE: $$? >>_$@ @-$(CMP) "$(srcdir)"/$@.ok _$@ && rm -f _$@ Gt-dummy: |