diff options
author | Brent Cook <bcook@openbsd.org> | 2015-07-22 11:40:16 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-07-22 11:40:16 -0500 |
commit | dd0704b17684691ca80d721b4a4675394552c6e0 (patch) | |
tree | 9ba6d85c4a3ea1b774877ea2cf82921c375c0341 | |
parent | a9b16c2d66de5e4cda13c51b9a0c50964850a87c (diff) | |
download | portable-dd0704b17684691ca80d721b4a4675394552c6e0.tar.gz portable-dd0704b17684691ca80d721b4a4675394552c6e0.tar.bz2 portable-dd0704b17684691ca80d721b4a4675394552c6e0.zip |
s/CMakeFiles/CMakeLists/, start porting test scripts
-rw-r--r-- | tests/CMakeLists.txt | 6 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
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 | ||
11 | set(ENV{srcdir} ${CMAKE_CURRENT_SOURCE_DIR}) | ||
12 | |||
11 | # aeadtest | 13 | # aeadtest |
12 | add_executable(aeadtest aeadtest.c) | 14 | add_executable(aeadtest aeadtest.c) |
13 | target_link_libraries(aeadtest ${OPENSSL_LIBS}) | 15 | target_link_libraries(aeadtest ${OPENSSL_LIBS}) |
14 | add_test(aeadtest ${CMAKE_CURRENT_SOURCE_DIR}/aeadtest.sh) | 16 | add_test(aeadtest aeadtest.sh) |
17 | configure_file(aeadtests.txt aeadtests.txt COPYONLY) | ||
18 | configure_file(aeadtest.sh aeadtest.sh COPYONLY) | ||
15 | 19 | ||
16 | # aes_wrap | 20 | # aes_wrap |
17 | add_executable(aes_wrap aes_wrap.c) | 21 | add_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 | ||
12 | TESTS = | 12 | TESTS = |
13 | check_PROGRAMS = | 13 | check_PROGRAMS = |
14 | EXTRA_DIST = CMakeFiles.txt | 14 | EXTRA_DIST = CMakeLists.txt |
15 | DISTCLEANFILES = pidwraptest.txt | 15 | DISTCLEANFILES = pidwraptest.txt |
16 | 16 | ||
17 | # aeadtest | 17 | # aeadtest |