summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Winstein <keithw@mit.edu>2013-03-27 15:21:20 -0400
committerKeith Winstein <keithw@mit.edu>2013-03-27 18:36:03 -0400
commit9669178f07e3fe0b24f8982164ff4ee218db2515 (patch)
tree7d3ffb9d4b951643c71173b767dd1a78bf175692
parent4a37359704dacd2b86b332432ee54f3e1dfd833d (diff)
Eliminate ocb.cc test program (closes #408)
This test doesn't return an error on failure and also was triggering a stack protector warning on some platforms. We have an end-to-end test of OCB in src/tests/ocb-aes.cc that seems to work well.
-rw-r--r--src/crypto/Makefile.am7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/crypto/Makefile.am b/src/crypto/Makefile.am
index 995c388..3f3b138 100644
--- a/src/crypto/Makefile.am
+++ b/src/crypto/Makefile.am
@@ -15,10 +15,3 @@ libmoshcrypto_a_SOURCES = \
crypto.cc \
crypto.h \
prng.h
-
-check_PROGRAMS = ocb-test
-TESTS = ocb-test
-
-ocb_test_SOURCES = $(OCB_SRCS)
-ocb_test_CPPFLAGS = -DOCB_TEST_PROGRAM
-ocb_test_LDADD = $(OPENSSL_LIBS)