From cf9ee7ae80c2bb70a784e54dfc30e05d91732a84 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 6 Jun 2011 15:01:52 +0100 Subject: [PATCH] test/Makefile.am: list tests one per line This improves clarity, and makes conflicts less likely and merges more obviously correct. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=34405 Reviewed-by: Will Thompson --- test/Makefile.am | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index 99740c9..d537321 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -13,15 +13,29 @@ noinst_LTLIBRARIES = libdbus-testutils.la if DBUS_BUILD_TESTS ## break-loader removed for now ## most of these binaries are used in tests but are not themselves tests -TEST_BINARIES=test-service test-names test-shell-service shell-test spawn-test test-segfault test-exit test-sleep-forever +TEST_BINARIES = \ + shell-test \ + spawn-test \ + test-exit \ + test-names \ + test-segfault \ + test-service \ + test-shell-service \ + test-sleep-forever \ + $(NULL) ## these are the things to run in make check (i.e. they are actual tests) ## (binaries in here must also be in TEST_BINARIES) -TESTS=shell-test -else +TESTS = \ + shell-test \ + $(NULL) + +else !DBUS_BUILD_TESTS + TEST_BINARIES= TESTS= -endif + +endif !DBUS_BUILD_TESTS noinst_PROGRAMS= $(TEST_BINARIES) -- 2.7.4