X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2FMakefile.am;h=96a3faae6b69427527a87b52bdb70c4cbf0af206;hb=6196d3a09915524c719f0a6eee0f05ff1005cb1c;hp=cb00b56b0b2d949993b4d458f9f9570e0214c7c4;hpb=2b9093e12b00c876f5a5008700ede4e0d234dc43;p=lttng-ust.git diff --git a/tests/Makefile.am b/tests/Makefile.am index cb00b56b..96a3faae 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,3 +1,22 @@ -SUBDIRS = hello hello2 basic basic_long fork simple_include snprintf test-nevents test-libustinstr-malloc dlopen +SUBDIRS = utils hello same_line_tracepoint snprintf benchmark ust-elf \ + ctf-types test-app-ctx -dist_noinst_SCRIPTS = test_loop runtests trace_matches +if CXX_WORKS +SUBDIRS += hello.cxx +endif + +LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \ + $(top_srcdir)/config/tap-driver.sh + +TESTS = snprintf/test_snprintf \ + ust-elf/test_ust_elf + +check-loop: + while [ 0 ]; do \ + $(MAKE) $(AM_MAKEFLAGS) check; \ + if [ "$$?" != "0" ]; then \ + break; \ + fi \ + done + +.PHONY: check-loop