One more test

This commit is contained in:
Frank Denis
2013-01-20 15:25:22 -08:00
parent c04d4816fb
commit 79f24e04e3
5 changed files with 76 additions and 5 deletions
+9 -5
View File
@@ -1,10 +1,11 @@
AM_CPPFLAGS = \
-I. \
-I$(top_srcdir)/src/libsodium/include
-I$(top_srcdir)/src/libsodium/include \
-I$(top_srcdir)/src/libsodium/include/sodium
TESTS_TARGETS = \
test-randombytes
test-randombytes \
auth
check_PROGRAMS = $(TESTS_TARGETS)
@@ -12,7 +13,10 @@ TESTS = $(TESTS_TARGETS)
TESTS_LDADD = $(top_srcdir)/src/libsodium/libsodium.la
test_randombytes_SOURCES = test-randombytes.c
test_randombytes_LDADD = $(TESTS_LDADD)
test_randombytes_SOURCES = test-randombytes.c
test_randombytes_LDADD = $(TESTS_LDADD)
auth_SOURCES = auth.c cmptest.h
auth_LDADD = $(TESTS_LDADD)
verify: check