All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH lttng-tools] Fix: Add test scripts and lists to the distribution package
@ 2013-03-27  5:38 Jérémie Galarneau
  0 siblings, 0 replies; 2+ messages in thread
From: Jérémie Galarneau @ 2013-03-27  5:38 UTC (permalink / raw)
  To: lttng-dev

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
---
 tests/Makefile.am                         | 3 +++
 tests/regression/tools/health/Makefile.am | 3 +++
 tests/utils/Makefile.am                   | 3 ++-
 tests/utils/tap/Makefile.am               | 2 ++
 4 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/tests/Makefile.am b/tests/Makefile.am
index 5feaca2..c8a85e0 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -10,3 +10,6 @@ check-am:
 	./run.sh unit_tests
 	./run.sh fast_regression
 endif
+
+dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
+EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
diff --git a/tests/regression/tools/health/Makefile.am b/tests/regression/tools/health/Makefile.am
index 94e54df..098fbf4 100644
--- a/tests/regression/tools/health/Makefile.am
+++ b/tests/regression/tools/health/Makefile.am
@@ -36,3 +36,6 @@ health_check_SOURCES = health_check.c $(UTILS)
 health_check_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
 		     $(top_builddir)/src/common/libcommon.la
 endif
+
+dist_noinst_SCRIPTS = test_thread_exit test_thread_stall test_tp_fail
+EXTRA_DIST = test_thread_exit test_thread_stall test_tp_fail
diff --git a/tests/utils/Makefile.am b/tests/utils/Makefile.am
index 4325846..1b362fc 100644
--- a/tests/utils/Makefile.am
+++ b/tests/utils/Makefile.am
@@ -1,3 +1,4 @@
 SUBDIRS = tap
 
-EXTRA_DIST = utils.sh utils.h
+EXTRA_DIST = utils.sh utils.h test_utils.py
+dist_noinst_SCRIPTS = utils.sh utils.h test_utils.py
diff --git a/tests/utils/tap/Makefile.am b/tests/utils/tap/Makefile.am
index 366f4c4..14cd234 100644
--- a/tests/utils/tap/Makefile.am
+++ b/tests/utils/tap/Makefile.am
@@ -1,2 +1,4 @@
 lib_LTLIBRARIES = libtap.la
 libtap_la_SOURCES = tap.c tap.h
+dist_noinst_SCRIPTS = tap.sh
+EXTRA_DIST = tap.sh
-- 
1.8.2


_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH lttng-tools] Fix: Add test scripts and lists to the distribution package
       [not found] <1364362715-14459-1-git-send-email-jeremie.galarneau@efficios.com>
@ 2013-03-27 14:39 ` David Goulet
  0 siblings, 0 replies; 2+ messages in thread
From: David Goulet @ 2013-03-27 14:39 UTC (permalink / raw)
  To: Jérémie Galarneau; +Cc: lttng-dev

Merged!

Jérémie Galarneau:
> Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
> ---
>  tests/Makefile.am                         | 3 +++
>  tests/regression/tools/health/Makefile.am | 3 +++
>  tests/utils/Makefile.am                   | 3 ++-
>  tests/utils/tap/Makefile.am               | 2 ++
>  4 files changed, 10 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/Makefile.am b/tests/Makefile.am
> index 5feaca2..c8a85e0 100644
> --- a/tests/Makefile.am
> +++ b/tests/Makefile.am
> @@ -10,3 +10,6 @@ check-am:
>  	./run.sh unit_tests
>  	./run.sh fast_regression
>  endif
> +
> +dist_noinst_SCRIPTS = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
> +EXTRA_DIST = run.sh unit_tests fast_regression long_regression root_regression with_bindings_regression
> diff --git a/tests/regression/tools/health/Makefile.am b/tests/regression/tools/health/Makefile.am
> index 94e54df..098fbf4 100644
> --- a/tests/regression/tools/health/Makefile.am
> +++ b/tests/regression/tools/health/Makefile.am
> @@ -36,3 +36,6 @@ health_check_SOURCES = health_check.c $(UTILS)
>  health_check_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
>  		     $(top_builddir)/src/common/libcommon.la
>  endif
> +
> +dist_noinst_SCRIPTS = test_thread_exit test_thread_stall test_tp_fail
> +EXTRA_DIST = test_thread_exit test_thread_stall test_tp_fail
> diff --git a/tests/utils/Makefile.am b/tests/utils/Makefile.am
> index 4325846..1b362fc 100644
> --- a/tests/utils/Makefile.am
> +++ b/tests/utils/Makefile.am
> @@ -1,3 +1,4 @@
>  SUBDIRS = tap
>  
> -EXTRA_DIST = utils.sh utils.h
> +EXTRA_DIST = utils.sh utils.h test_utils.py
> +dist_noinst_SCRIPTS = utils.sh utils.h test_utils.py
> diff --git a/tests/utils/tap/Makefile.am b/tests/utils/tap/Makefile.am
> index 366f4c4..14cd234 100644
> --- a/tests/utils/tap/Makefile.am
> +++ b/tests/utils/tap/Makefile.am
> @@ -1,2 +1,4 @@
>  lib_LTLIBRARIES = libtap.la
>  libtap_la_SOURCES = tap.c tap.h
> +dist_noinst_SCRIPTS = tap.sh
> +EXTRA_DIST = tap.sh

_______________________________________________
lttng-dev mailing list
lttng-dev@lists.lttng.org
http://lists.lttng.org/cgi-bin/mailman/listinfo/lttng-dev

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-03-27 14:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-03-27  5:38 [PATCH lttng-tools] Fix: Add test scripts and lists to the distribution package Jérémie Galarneau
     [not found] <1364362715-14459-1-git-send-email-jeremie.galarneau@efficios.com>
2013-03-27 14:39 ` David Goulet

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.