mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 10:34:05 +00:00
0280871287
$ gmake check VERBOSE=1 [...] FAIL: test_external_symbols.bash ================================ ../build-aux/test-driver: ./test_external_symbols.bash: not found FAIL test_external_symbols.bash (exit status: 127) FAIL: test_gop.bash =================== ../build-aux/test-driver: ./test_gop.bash: not found FAIL test_gop.bash (exit status: 127) [...]
32 lines
711 B
Makefile
32 lines
711 B
Makefile
|
|
TESTS = $(check_PROGRAMS) \
|
|
test_external_symbols.sh \
|
|
test_gop.sh \
|
|
test_interlace.sh \
|
|
test_intra.sh \
|
|
test_invalid_input.sh \
|
|
test_mv_constraint.sh \
|
|
test_owf_wpp_tiles.sh \
|
|
test_rate_control.sh \
|
|
test_slices.sh \
|
|
test_smp.sh \
|
|
test_tools.sh \
|
|
test_weird_shapes.sh
|
|
|
|
check_PROGRAMS = kvazaar_tests
|
|
|
|
kvazaar_tests_SOURCES = \
|
|
dct_tests.c \
|
|
intra_sad_tests.c \
|
|
mv_cand_tests.c \
|
|
sad_tests.c \
|
|
sad_tests.h \
|
|
satd_tests.c \
|
|
satd_tests.h \
|
|
speed_tests.c \
|
|
tests_main.c \
|
|
test_strategies.c \
|
|
test_strategies.h
|
|
kvazaar_tests_CFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/src
|
|
kvazaar_tests_LDFLAGS = -static $(top_builddir)/src/libkvazaar.la $(LIBS)
|