aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile.am
blob: a04855c0f797c28dd70d7e4fc5be450fa902acc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

noinst_PROGRAMS = \
	test-loader

test_loader_SOURCES = \
	test-loader.c

test_loader_CFLAGS = \
	-Wall -Werror \
	$(UPANEL_CFLAGS) -I$(top_srcdir)

test_loader_LDADD = \
	$(UPANEL_LIBS) $(top_builddir)/libindicator/.libs/libindicator.a

XML_REPORT  = loader-check-results.xml
HTML_REPORT = loader-check-results.html

loader-tester: test-loader
	@gtester -o=$(XML_REPORT) ./test-loader

check-local: loader-tester

DISTCLEANFILES = $(XML_REPORT) $(HTML_REPORT)