Added tests for today() and date attributes.
[libacl.git] / test / Makefile.am
1 TESTS = $(check_PROGRAMS) date_today check_output
2
3 AM_CPPFLAGS = -I../src
4 LDADD = ../src/.libs/libACL.la
5 check_PROGRAMS = string_assign string_basics string_compare string_cat string_substring string_regex \
6                  date_assign date_parse date_compare date_arithmetic date_attributes date_check_today
7
8 string_assign_SOURCES      = string_assign.cpp
9 string_basics_SOURCES      = string_basics.cpp
10 string_compare_SOURCES     = string_compare.cpp
11 string_cat_SOURCES         = string_cat.cpp
12 string_substring_SOURCES   = string_substring.cpp
13 string_regex_SOURCES       = string_regex.cpp
14
15 date_assign_SOURCES        = date_assign.cpp
16 date_parse_SOURCES         = date_parse.cpp
17 date_compare_SOURCES       = date_compare.cpp
18 date_arithmetic_SOURCES    = date_arithmetic.cpp
19 date_attributes_SOURCES    = date_attributes.cpp
20  
21 date_check_today_SOURCES   = date_check_today.cpp
22
23 date_today : date_check_today