From 179975b22d9bf97da14b5ab38ab37fdf48b2a8bd Mon Sep 17 00:00:00 2001 From: Brian Johnson Date: Mon, 11 Sep 2017 12:05:06 -0500 Subject: [PATCH] Fixed order for generating memory_test wast. --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 63abcc130d3..1e2de0c0402 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -11,8 +11,8 @@ add_executable( chain_test ${UNIT_TESTS} ${COMMON_SOURCES} ) target_link_libraries( chain_test eos_native_contract eos_chain chainbase eos_utilities eos_egenesis_none wallet_plugin fc ${PLATFORM_SPECIFIC_LIBS} ) if(WASM_TOOLCHAIN) - file(GLOB SLOW_TESTS "slow_tests/*.cpp") add_subdirectory(slow_tests/memory_test) + file(GLOB SLOW_TESTS "slow_tests/*.cpp") add_executable( slow_test ${SLOW_TESTS} ${COMMON_SOURCES} ) target_link_libraries( slow_test eos_native_contract eos_chain chainbase eos_utilities eos_egenesis_none fc ${PLATFORM_SPECIFIC_LIBS} ) target_include_directories( slow_test PUBLIC ${CMAKE_BINARY_DIR}/contracts )