| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- # Copyright (C) 2019 Intel Corporation. All rights reserved.
- # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- cmake_minimum_required(VERSION 3.14)
- project (smart-test-interpreter)
- add_definitions (-DRUN_ON_LINUX)
- add_definitions (-Dattr_container_malloc=malloc)
- add_definitions (-Dattr_container_free=free)
- # add_definitions (-DWASM_ENABLE_WAMR_COMPILER=1)
- set(WAMR_BUILD_AOT 0)
- set(WAMR_BUILD_INTERP 1)
- set(WAMR_BUILD_JIT 0)
- set (WAMR_BUILD_LIBC_WASI 0)
- set (WAMR_BUILD_APP_FRAMEWORK 1)
- include (../../unit_common.cmake)
- include_directories (${CMAKE_CURRENT_SOURCE_DIR})
- file (GLOB_RECURSE source_all ${CMAKE_CURRENT_SOURCE_DIR}/*.cc)
- set (UNIT_SOURCE ${source_all})
- set (unit_test_sources
- ${UNIT_SOURCE}
- ${WAMR_RUNTIME_LIB_SOURCE}
- )
- add_executable (smart_test_classic-interpreter ${unit_test_sources})
- target_compile_definitions(smart_test_classic-interpreter PUBLIC -DWAMR_BUILD_FAST_INTERP=0)
- target_link_libraries (smart_test_classic-interpreter gtest_main)
- add_executable (smart_test_fast-interpreter ${unit_test_sources})
- target_compile_definitions(smart_test_fast-interpreter PUBLIC -DWAMR_BUILD_FAST_INTERP=1)
- target_link_libraries (smart_test_fast-interpreter gtest_main)
- # Copy WASM files to build directory for classic interpreter
- # fast interpreter uses the same WASM files
- add_custom_command(TARGET smart_test_classic-interpreter POST_BUILD
- COMMAND ${CMAKE_COMMAND} -E copy
- ${CMAKE_CURRENT_LIST_DIR}/wasm-apps/*.wasm
- ${CMAKE_CURRENT_BINARY_DIR}/
- COMMENT "Copy test wasm files to the directory of google test"
- )
- gtest_discover_tests(smart_test_classic-interpreter)
- gtest_discover_tests(smart_test_fast-interpreter)
|