aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-07-22 11:40:16 -0500
committerBrent Cook <bcook@openbsd.org>2015-07-22 11:40:16 -0500
commitdd0704b17684691ca80d721b4a4675394552c6e0 (patch)
tree9ba6d85c4a3ea1b774877ea2cf82921c375c0341
parenta9b16c2d66de5e4cda13c51b9a0c50964850a87c (diff)
downloadportable-dd0704b17684691ca80d721b4a4675394552c6e0.tar.gz
portable-dd0704b17684691ca80d721b4a4675394552c6e0.tar.bz2
portable-dd0704b17684691ca80d721b4a4675394552c6e0.zip
s/CMakeFiles/CMakeLists/, start porting test scripts
-rw-r--r--tests/CMakeLists.txt6
-rw-r--r--tests/Makefile.am2
2 files changed, 6 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 511a13f..75b299e 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -8,10 +8,14 @@ include_directories(
8 ../apps 8 ../apps
9) 9)
10 10
11set(ENV{srcdir} ${CMAKE_CURRENT_SOURCE_DIR})
12
11# aeadtest 13# aeadtest
12add_executable(aeadtest aeadtest.c) 14add_executable(aeadtest aeadtest.c)
13target_link_libraries(aeadtest ${OPENSSL_LIBS}) 15target_link_libraries(aeadtest ${OPENSSL_LIBS})
14add_test(aeadtest ${CMAKE_CURRENT_SOURCE_DIR}/aeadtest.sh) 16add_test(aeadtest aeadtest.sh)
17configure_file(aeadtests.txt aeadtests.txt COPYONLY)
18configure_file(aeadtest.sh aeadtest.sh COPYONLY)
15 19
16# aes_wrap 20# aes_wrap
17add_executable(aes_wrap aes_wrap.c) 21add_executable(aes_wrap aes_wrap.c)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 6418b8a..cd7c59e 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -11,7 +11,7 @@ LDADD += $(top_builddir)/crypto/libcrypto.la
11 11
12TESTS = 12TESTS =
13check_PROGRAMS = 13check_PROGRAMS =
14EXTRA_DIST = CMakeFiles.txt 14EXTRA_DIST = CMakeLists.txt
15DISTCLEANFILES = pidwraptest.txt 15DISTCLEANFILES = pidwraptest.txt
16 16
17# aeadtest 17# aeadtest