Skip to content

Commit 7455779

Browse files
author
algae
committed
add a test for reinitialization
1 parent 3aa278e commit 7455779

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tests/CMakeLists.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ set(test-aes_SRCS
6969
test-aes.cpp
7070
)
7171

72+
set(test-restart_SRCS
73+
test-restart.cpp
74+
)
75+
7276
add_executable(test-http-merge_chunked ${test-http-merge_chunked_SRCS})
7377
add_executable(test-http-req ${test-http-req_SRCS})
7478
add_executable(test-http-res ${test-http-res_SRCS})
@@ -82,6 +86,7 @@ add_executable(test-blinding ${test-blinding_SRCS})
8286
add_executable(test-elligator ${test-elligator_SRCS})
8387
add_executable(test-eddsa ${test-eddsa_SRCS})
8488
add_executable(test-aes ${test-aes_SRCS})
89+
add_executable(test-restart ${test-restart_SRCS})
8590

8691
set(LIBS
8792
libi2pd
@@ -107,6 +112,7 @@ target_link_libraries(test-blinding ${LIBS})
107112
target_link_libraries(test-elligator ${LIBS})
108113
target_link_libraries(test-eddsa ${LIBS})
109114
target_link_libraries(test-aes ${LIBS})
115+
target_link_libraries(test-restart ${LIBS})
110116

111117
add_test(test-http-merge_chunked ${TEST_PATH}/test-http-merge_chunked)
112118
add_test(test-http-req ${TEST_PATH}/test-http-req)
@@ -121,3 +127,4 @@ add_test(test-blinding ${TEST_PATH}/test-blinding)
121127
add_test(test-elligator ${TEST_PATH}/test-elligator)
122128
add_test(test-eddsa ${TEST_PATH}/test-eddsa)
123129
add_test(test-aes ${TEST_PATH}/test-aes)
130+
add_test(test-restart ${TEST_PATH}/test-restart)

0 commit comments

Comments
 (0)