Skip to content

Commit e19854e

Browse files
committed
feat: disable fast interpreter for shared heap tests and update unsupported features test library
1 parent a46a617 commit e19854e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

tests/unit/shared-heap/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ add_definitions(-DRUN_ON_LINUX)
1010
set(WAMR_BUILD_APP_FRAMEWORK 0)
1111
set(WAMR_BUILD_AOT 1)
1212
set(WAMR_BUILD_INTERP 1)
13-
set(WAMR_BUILD_FAST_INTERP 1)
13+
set(WAMR_BUILD_FAST_INTERP 0)
1414
set(WAMR_BUILD_JIT 0)
1515
if(WAMR_BUILD_TARGET STREQUAL "X86_32")
1616
set(WAMR_BUILD_MEMORY64 0)

tests/unit/unsupported-features/CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ project(unsupported_features_tests)
88
include(CMakePrintHelpers)
99

1010
# fake target
11+
set(WAMR_BUILD_INTERP 1)
1112
include(../unit_common.cmake)
12-
add_library(unsupported_features_tests EXCLUDE_FROM_ALL ${WAMR_RUNTIME_LIB_SOURCE})
13+
add_library(unsupported_features_tests ${WAMR_RUNTIME_LIB_SOURCE})
1314

1415
enable_testing()
1516

0 commit comments

Comments
 (0)