1
0
mirror of https://git.savannah.gnu.org/git/gnulib.git synced 2025-08-08 17:22:05 +03:00

Fix link errors in unit tests.

Reported by Tom G. Christensen <tgc@jupiterrise.com>.

* modules/bitset-tests (Makefile.am): Link test-bitset against libintl.
* modules/array-map-tests (Makefile.am): Link test-array_map against
libintl.
* modules/array-set-tests (Makefile.am): Link test-array_set against
libintl.
* modules/hash-map-tests (Makefile.am): Link test-hash_map against
libintl.
* modules/hash-set-tests (Makefile.am): Link test-hash_set against
libintl.
* modules/linkedhash-map-tests (Makefile.am): Link test-linkedhash_map
against libintl.
* modules/linkedhash-set-tests (Makefile.am): Link test-linkedhash_set
against libintl.
This commit is contained in:
Bruno Haible
2019-01-04 20:31:18 +01:00
parent 6dd4f65372
commit 7561e64ee3
8 changed files with 25 additions and 0 deletions

View File

@@ -1,3 +1,21 @@
2019-01-04 Bruno Haible <bruno@clisp.org>
Fix link errors in unit tests.
Reported by Tom G. Christensen <tgc@jupiterrise.com>.
* modules/bitset-tests (Makefile.am): Link test-bitset against libintl.
* modules/array-map-tests (Makefile.am): Link test-array_map against
libintl.
* modules/array-set-tests (Makefile.am): Link test-array_set against
libintl.
* modules/hash-map-tests (Makefile.am): Link test-hash_map against
libintl.
* modules/hash-set-tests (Makefile.am): Link test-hash_set against
libintl.
* modules/linkedhash-map-tests (Makefile.am): Link test-linkedhash_map
against libintl.
* modules/linkedhash-set-tests (Makefile.am): Link test-linkedhash_set
against libintl.
2019-01-04 Bruno Haible <bruno@clisp.org> 2019-01-04 Bruno Haible <bruno@clisp.org>
Fix incorrect 'Link' sections. Fix incorrect 'Link' sections.

View File

@@ -12,3 +12,4 @@ configure.ac:
Makefile.am: Makefile.am:
TESTS += test-array_map TESTS += test-array_map
check_PROGRAMS += test-array_map check_PROGRAMS += test-array_map
test_array_map_LDADD = $(LDADD) @LIBINTL@

View File

@@ -12,3 +12,4 @@ configure.ac:
Makefile.am: Makefile.am:
TESTS += test-array_set TESTS += test-array_set
check_PROGRAMS += test-array_set check_PROGRAMS += test-array_set
test_array_set_LDADD = $(LDADD) @LIBINTL@

View File

@@ -9,3 +9,4 @@ configure.ac:
Makefile.am: Makefile.am:
TESTS += test-bitset TESTS += test-bitset
check_PROGRAMS += test-bitset check_PROGRAMS += test-bitset
test_bitset_LDADD = $(LDADD) @LIBINTL@

View File

@@ -11,3 +11,4 @@ configure.ac:
Makefile.am: Makefile.am:
TESTS += test-hash_map TESTS += test-hash_map
check_PROGRAMS += test-hash_map check_PROGRAMS += test-hash_map
test_hash_map_LDADD = $(LDADD) @LIBINTL@

View File

@@ -11,3 +11,4 @@ configure.ac:
Makefile.am: Makefile.am:
TESTS += test-hash_set TESTS += test-hash_set
check_PROGRAMS += test-hash_set check_PROGRAMS += test-hash_set
test_hash_set_LDADD = $(LDADD) @LIBINTL@

View File

@@ -11,3 +11,4 @@ configure.ac:
Makefile.am: Makefile.am:
TESTS += test-linkedhash_map TESTS += test-linkedhash_map
check_PROGRAMS += test-linkedhash_map check_PROGRAMS += test-linkedhash_map
test_linkedhash_map_LDADD = $(LDADD) @LIBINTL@

View File

@@ -11,3 +11,4 @@ configure.ac:
Makefile.am: Makefile.am:
TESTS += test-linkedhash_set TESTS += test-linkedhash_set
check_PROGRAMS += test-linkedhash_set check_PROGRAMS += test-linkedhash_set
test_linkedhash_set_LDADD = $(LDADD) @LIBINTL@