build: Ensure all experimental tests are distributed in tarballs
As with the previous commit, ensure that tests which are run when configured with --enable-experimental-api, are always distributed; even when running `make dist` from a source tree configured with --disable-experimental-api. Signed-off-by: Philip Withnall <withnall@endlessm.com> Closes: #1002 Approved by: cgwalters
This commit is contained in:
parent
f6ba20d9d6
commit
82024f161b
|
|
@ -114,8 +114,7 @@ _installed_or_uninstalled_test_scripts = \
|
||||||
tests/test-summary-view.sh \
|
tests/test-summary-view.sh \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
if ENABLE_EXPERIMENTAL_API
|
experimental_test_scripts = \
|
||||||
_installed_or_uninstalled_test_scripts += \
|
|
||||||
tests/test-find-remotes.sh \
|
tests/test-find-remotes.sh \
|
||||||
tests/test-fsck-collections.sh \
|
tests/test-fsck-collections.sh \
|
||||||
tests/test-init-collections.sh \
|
tests/test-init-collections.sh \
|
||||||
|
|
@ -125,6 +124,11 @@ _installed_or_uninstalled_test_scripts += \
|
||||||
tests/test-summary-collections.sh \
|
tests/test-summary-collections.sh \
|
||||||
tests/test-pull-collections.sh \
|
tests/test-pull-collections.sh \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
if ENABLE_EXPERIMENTAL_API
|
||||||
|
_installed_or_uninstalled_test_scripts += $(experimental_test_scripts)
|
||||||
|
else
|
||||||
|
EXTRA_DIST += $(experimental_test_scripts)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if BUILDOPT_FUSE
|
if BUILDOPT_FUSE
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue