mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
always use core_tests for consistency, not coretests
Other tests use unit_tests, performance_tests, etc. This fixes getting it wrong half the time when typing.
This commit is contained in:
parent
8d511f3c24
commit
21b9f6f3c7
@ -212,7 +212,7 @@ invokes cmake commands as needed.
|
||||
|
||||
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:
|
||||
|
||||
|
@ -111,7 +111,7 @@ add_test(
|
||||
COMMAND hash-target-tests)
|
||||
|
||||
set(enabled_tests
|
||||
coretests
|
||||
core_tests
|
||||
difficulty
|
||||
hash
|
||||
performance_tests
|
||||
|
@ -58,10 +58,10 @@ set(core_tests_headers
|
||||
v2_tests.h
|
||||
rct.h)
|
||||
|
||||
add_executable(coretests
|
||||
add_executable(core_tests
|
||||
${core_tests_sources}
|
||||
${core_tests_headers})
|
||||
target_link_libraries(coretests
|
||||
target_link_libraries(core_tests
|
||||
PRIVATE
|
||||
cryptonote_core
|
||||
p2p
|
||||
@ -69,10 +69,10 @@ target_link_libraries(coretests
|
||||
epee
|
||||
${CMAKE_THREAD_LIBS_INIT}
|
||||
${EXTRA_LIBRARIES})
|
||||
set_property(TARGET coretests
|
||||
set_property(TARGET core_tests
|
||||
PROPERTY
|
||||
FOLDER "tests")
|
||||
|
||||
add_test(
|
||||
NAME coretests
|
||||
COMMAND coretests --generate_and_play_test_data)
|
||||
NAME core_tests
|
||||
COMMAND core_tests --generate_and_play_test_data)
|
||||
|
Loading…
Reference in New Issue
Block a user