X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=tests%2FMakefile.am;h=96a3faae6b69427527a87b52bdb70c4cbf0af206;hb=6196d3a09915524c719f0a6eee0f05ff1005cb1c;hp=2ddaceba3173d672013461dd49984fe835bf8ead;hpb=43f0d5acc1fc89b5890365f7624a2dd8e946df1f;p=lttng-ust.git diff --git a/tests/Makefile.am b/tests/Makefile.am index 2ddaceba..96a3faae 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1 +1,22 @@ -SUBDIRS = hello hello2 basic basic_long fork simple_include +SUBDIRS = utils hello same_line_tracepoint snprintf benchmark ust-elf \ + ctf-types test-app-ctx + +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