Merge pull request #2686
21b9f6f3
always use core_tests for consistency, not coretests (moneromooo-monero)
This commit is contained in:
commit
0c5872c869
|
@ -212,7 +212,7 @@ invokes cmake commands as needed.
|
||||||
|
|
||||||
make release-test
|
make release-test
|
||||||
|
|
||||||
*NOTE*: `coretests` test may take a few hours to complete.
|
*NOTE*: `core_tests` test may take a few hours to complete.
|
||||||
|
|
||||||
* **Optional**: to build binaries suitable for debugging:
|
* **Optional**: to build binaries suitable for debugging:
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,7 @@ add_test(
|
||||||
COMMAND hash-target-tests)
|
COMMAND hash-target-tests)
|
||||||
|
|
||||||
set(enabled_tests
|
set(enabled_tests
|
||||||
coretests
|
core_tests
|
||||||
difficulty
|
difficulty
|
||||||
hash
|
hash
|
||||||
performance_tests
|
performance_tests
|
||||||
|
|
|
@ -58,10 +58,10 @@ set(core_tests_headers
|
||||||
v2_tests.h
|
v2_tests.h
|
||||||
rct.h)
|
rct.h)
|
||||||
|
|
||||||
add_executable(coretests
|
add_executable(core_tests
|
||||||
${core_tests_sources}
|
${core_tests_sources}
|
||||||
${core_tests_headers})
|
${core_tests_headers})
|
||||||
target_link_libraries(coretests
|
target_link_libraries(core_tests
|
||||||
PRIVATE
|
PRIVATE
|
||||||
cryptonote_core
|
cryptonote_core
|
||||||
p2p
|
p2p
|
||||||
|
@ -69,10 +69,10 @@ target_link_libraries(coretests
|
||||||
epee
|
epee
|
||||||
${CMAKE_THREAD_LIBS_INIT}
|
${CMAKE_THREAD_LIBS_INIT}
|
||||||
${EXTRA_LIBRARIES})
|
${EXTRA_LIBRARIES})
|
||||||
set_property(TARGET coretests
|
set_property(TARGET core_tests
|
||||||
PROPERTY
|
PROPERTY
|
||||||
FOLDER "tests")
|
FOLDER "tests")
|
||||||
|
|
||||||
add_test(
|
add_test(
|
||||||
NAME coretests
|
NAME core_tests
|
||||||
COMMAND coretests --generate_and_play_test_data)
|
COMMAND core_tests --generate_and_play_test_data)
|
||||||
|
|
Loading…
Reference in New Issue