From 58017c3b45507df02e06205b3f197b89477b9f25 Mon Sep 17 00:00:00 2001 From: Christian Hergert Date: Sun, 25 Sep 2016 00:27:28 -0700 Subject: [PATCH] build: ensure we build and run new tests --- tests/Makefile.am | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index f3825d3f..3d5aff47 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -13,10 +13,17 @@ test_libs = \ $(top_builddir)/lib/libsysprof-@API_VERSION@.la TESTS += test-capture +TEST_PROGS += test-capture test_capture_SOURCES = test-capture.c test_capture_CFLAGS = $(test_cflags) test_capture_LDADD = $(test_libs) +TESTS += test-capture-cursor +TEST_PROGS += test-capture-cursor +test_capture_cursor_SOURCES = test-capture-cursor.c +test_capture_cursor_CFLAGS = $(test_cflags) +test_capture_cursor_LDADD = $(test_libs) + if ENABLE_GTK