Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.0] move some tests that open localhost sockets to NP tests #2214

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions plugins/http_plugin/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ target_include_directories( http_plugin_unit_tests PUBLIC
${CMAKE_SOURCE_DIR}/plugins/http_plugin/include )

add_test( NAME http_plugin_unit_tests COMMAND http_plugin_unit_tests )
set_property(TEST http_plugin_unit_tests PROPERTY LABELS nonparallelizable_tests)
3 changes: 2 additions & 1 deletion plugins/state_history_plugin/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ add_executable( test_state_history main.cpp session_test.cpp plugin_config_test.
target_link_libraries(test_state_history state_history_plugin eosio_testing eosio_chain_wrap)
target_include_directories( test_state_history PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/../include" )

add_test(test_state_history test_state_history)
add_test(test_state_history test_state_history)
set_property(TEST test_state_history PROPERTY LABELS nonparallelizable_tests)
1 change: 1 addition & 0 deletions tests/trx_generator/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ add_executable(trx_generator_tests trx_generator_tests.cpp trx_provider.cpp trx_
target_link_libraries(trx_generator_tests PRIVATE eosio_chain fc Boost::program_options ${CMAKE_DL_LIBS} ${PLATFORM_SPECIFIC_LIBS})
target_include_directories(trx_generator_tests PUBLIC ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
add_test(trx_generator_tests trx_generator_tests)
set_property(TEST trx_generator_tests PROPERTY LABELS nonparallelizable_tests)
Loading