Tests: add empty packet writer test
[babeltrace.git] / tests / lib / writer / Makefile.am
1 TESTS = test_ctf_writer_no_packet_context.py \
2 test_ctf_writer_empty_packet.py
3
4 check_SCRIPTS = $(TESTS)
5
6 dist_noinst_SCRIPTS = $(TESTS)
7 EXTRA_DIST = $(TESTS)
8
9 all-local:
10 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
11 for script in $(EXTRA_DIST); do \
12 cp -f $(srcdir)/$$script $(builddir); \
13 done; \
14 fi
15
16 clean-local:
17 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
18 for script in $(EXTRA_DIST); do \
19 rm -f $(builddir)/$$script; \
20 done; \
21 fi
This page took 0.032806 seconds and 5 git commands to generate.