diff options
author | Stef Walter <stefw@gnome.org> | 2012-07-17 08:08:04 +0200 |
---|---|---|
committer | Stef Walter <stefw@gnome.org> | 2012-07-26 12:22:31 +0200 |
commit | 542cb48951b7c4c21ca3669d07bf936b0fa58b42 (patch) | |
tree | 44bfd4e76bd441d0695a1fbb0099f7d6d5dcafa3 /tests/Makefile.am | |
parent | 06595e93ff57e97adbb313aebc50a2e32acd6039 (diff) |
Don't rely on loading order for duplicate modules
* We had relied on module 'two' loading before 'two-duplicate'
in the conf tests. However this isn't always the case, and the
name of the module can end up as 'two-duplicate'
https://bugzilla.gnome.org/show_bug.cgi?id=44740
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 1f6083f..c25ed57 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -45,7 +45,8 @@ TESTS = $(CHECK_PROGS:=$(EXEEXT)) noinst_LTLIBRARIES = \ mock-one.la \ mock-two.la \ - mock-three.la + mock-three.la \ + mock-four.la mock_one_la_SOURCES = \ mock-module.c mock-module.h \ @@ -66,6 +67,10 @@ mock_three_la_SOURCES = $(mock_one_la_SOURCES) mock_three_la_LDFLAGS = $(mock_one_la_LDFLAGS) mock_three_la_LIBADD = $(mock_one_la_LIBADD) +mock_four_la_SOURCES = $(mock_one_la_SOURCES) +mock_four_la_LDFLAGS = $(mock_one_la_LDFLAGS) +mock_four_la_LIBADD = $(mock_one_la_LIBADD) + EXTRA_DIST = \ cutest \ files |