Skip to content
Merged
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
6 changes: 5 additions & 1 deletion tests/runtime_shell/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ set(UNIT_TESTS_SH
)

if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
list(APPEND UNIT_TESTS_SH proxy_logs_expect.sh)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(riscv64)")
message(STATUS "We don't test Golang plugins on RISC-V 64bit platform for now")
else()
list(APPEND UNIT_TESTS_SH proxy_logs_expect.sh)
endif()
endif()

# Prepare list of unit tests
Expand Down
Loading