~linaro-toolchain-dev/cortex-strings/trunk

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Matthew Gretton-Dann
  • Author(s): Marcus Shawcroft
  • Date: 2013-01-07 14:11:09 UTC
  • Revision ID: matthew.gretton-dann@linaro.org-20130107141109-yfju01jxqtzsvq88
Add strncmp tests from glibc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
        tests/test-strchr \
44
44
        tests/test-strcmp \
45
45
        tests/test-strcpy \
46
 
        tests/test-strlen
 
46
        tests/test-strlen \
 
47
        tests/test-strncmp
47
48
 
48
49
# Options for the tests
49
50
tests_cflags = -I$(srcdir)/tests $(AM_CFLAGS)
66
67
tests_test_strcpy_CFLAGS = $(tests_cflags)
67
68
tests_test_strlen_LDADD = $(tests_ldadd)
68
69
tests_test_strlen_CFLAGS = $(tests_cflags)
 
70
tests_test_strncmp_LDADD = $(tests_ldadd)
 
71
tests_test_strncmp_CFLAGS = $(tests_cflags)
69
72
 
70
73
TESTS = $(check_PROGRAMS)
71
74