test, test/name-test: remove SOURCES where they can be inferred from the name of the executable

This commit is contained in:
Simon McVittie 2011-06-15 14:27:34 +01:00
parent 590a835974
commit 7430df2416
2 changed files with 0 additions and 57 deletions

View file

@ -65,33 +65,6 @@ endif !DBUS_BUILD_TESTS
noinst_PROGRAMS= $(TEST_BINARIES)
test_service_SOURCES= \
test-service.c
test_names_SOURCES= \
test-names.c
##break_loader_SOURCES= \
## break-loader.c
test_shell_service_SOURCES = \
test-shell-service.c
shell_test_SOURCES= \
shell-test.c
spawn_test_SOURCES= \
spawn-test.c
test_exit_SOURCES = \
test-exit.c
test_segfault_SOURCES = \
test-segfault.c
test_sleep_forever_SOURCES = \
test-sleep-forever.c
static_cppflags = \
$(AM_CPPFLAGS) \
-DDBUS_STATIC_BUILD \

View file

@ -26,44 +26,14 @@ if DBUS_BUILD_TESTS
## build even when not doing "make check"
noinst_PROGRAMS=test-pending-call-dispatch test-pending-call-timeout test-threads-init test-ids test-shutdown test-privserver test-privserver-client test-autolaunch
test_pending_call_dispatch_SOURCES = \
test-pending-call-dispatch.c
test_pending_call_dispatch_LDADD=$(top_builddir)/dbus/libdbus-internal.la
test_pending_call_timeout_SOURCES = \
test-pending-call-timeout.c
test_pending_call_timeout_LDADD=$(top_builddir)/dbus/libdbus-internal.la
test_threads_init_SOURCES = \
test-threads-init.c
test_threads_init_LDADD=$(top_builddir)/dbus/libdbus-internal.la
test_ids_SOURCES = \
test-ids.c
test_ids_LDADD=$(top_builddir)/dbus/libdbus-internal.la
test_shutdown_SOURCES = \
test-shutdown.c
test_shutdown_LDADD=../libdbus-testutils.la
test_privserver_SOURCES = \
test-privserver.c
test_privserver_LDADD=../libdbus-testutils.la
test_privserver_client_SOURCES = \
test-privserver-client.c
test_privserver_client_LDADD=../libdbus-testutils.la
test_autolaunch_SOURCES = \
test-autolaunch.c
test_autolaunch_LDADD=../libdbus-testutils.la
endif