File: Makefile.am

package info (click to toggle)
criterion 2.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 3,864 kB
  • sloc: ansic: 17,945; cpp: 774; python: 74; makefile: 25; sh: 19
file content (16 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# use the TAP log driver
TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) \
            $(top_srcdir)/build-aux/tap-driver.sh

 # Setup Criterion TAP output using ENV
 AM_TESTS_ENVIRONMENT = \
    CRITERION_OUTPUTS='tap:-'; \
    export CRITERION_OUTPUTS;

check_PROGRAMS = criterion_tests

criterion_tests_SOURCES = simple.c
criterion_tests_CFLAGS =  $(CRITERION_CFLAGS)
criterion_tests_LDFLAGS =  $(CRITERION_LIBS)

TESTS = criterion_tests