X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;ds=inline;f=tests%2Funit%2FMakefile.am;h=01b2981524bdebb271c9a867d03946c087e85b06;hb=10685de6af924c0ea83e451697639ed9c16586cc;hp=8ce735890241c65574c4a14ed1cf75416951bcda;hpb=d17cfa5dfb6045cffbc7a726954eef2220f2806e;p=lttng-tools.git diff --git a/tests/unit/Makefile.am b/tests/unit/Makefile.am index 8ce735890..01b298152 100644 --- a/tests/unit/Makefile.am +++ b/tests/unit/Makefile.am @@ -25,6 +25,7 @@ TESTS = test_kernel_data \ test_fd_tracker \ test_uuid \ test_buffer_view \ + test_event_expr_to_bytecode \ test_payload \ test_unix_socket \ test_kernel_probe @@ -51,6 +52,7 @@ noinst_PROGRAMS = test_uri test_session test_kernel_data \ test_unix_socket \ test_kernel_probe \ test_condition \ + test_event_expr_to_bytecode \ test_event_rule if HAVE_LIBLTTNG_UST_CTL @@ -65,6 +67,7 @@ test_uri_LDADD = $(LIBTAP) $(LIBCOMMON) $(LIBHASHTABLE) $(DL_LIBS) # Sessiond objects SESSIOND_OBJS = $(top_builddir)/src/bin/lttng-sessiond/buffer-registry.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/cmd.$(OBJEXT) \ + $(top_builddir)/src/bin/lttng-sessiond/condition-internal.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/save.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/notification-thread-commands.$(OBJEXT) \ $(top_builddir)/src/bin/lttng-sessiond/shm.$(OBJEXT) \ @@ -237,3 +240,7 @@ test_unix_socket_LDADD = $(LIBTAP) $(LIBSESSIOND_COMM) $(LIBCOMMON) # Kernel probe location api test test_kernel_probe_SOURCES = test_kernel_probe.c test_kernel_probe_LDADD = $(LIBTAP) $(LIBCOMMON) $(LIBLTTNG_CTL) $(DL_LIBS) +# +# Event expression to bytecode test +test_event_expr_to_bytecode_SOURCES = test_event_expr_to_bytecode.c +test_event_expr_to_bytecode_LDADD = $(LIBTAP) $(LIBLTTNG_CTL) $(LIBCOMMON)