tests: add a CNv4 JIT test

This commit is contained in:
moneromooo-monero 2019-02-17 12:01:04 +00:00
parent 24d281c324
commit 0de14396b9
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
3 changed files with 141 additions and 7 deletions

View file

@ -52,3 +52,17 @@ set_property(TARGET cncrypto-tests
add_test(
NAME cncrypto
COMMAND cncrypto-tests "${CMAKE_CURRENT_SOURCE_DIR}/tests.txt")
add_executable(cnv4-jit-tests cnv4-jit.c)
target_link_libraries(cnv4-jit-tests
PRIVATE
crypto
common
${EXTRA_LIBRARIES})
set_property(TARGET cnv4-jit-tests
PROPERTY
FOLDER "tests")
add_test(
NAME cnv4-jit
COMMAND cnv4-jit-tests 1788000 1789000)