Merge pull request #6876 from sfc-gh-ljoswiak/fixes/upgrade-tests-arm-support
Disable end-to-end upgrade tests for non-x86_64 platforms
This commit is contained in:
commit
43b3ac23f8
|
@ -253,25 +253,25 @@ endif()
|
||||||
${CMAKE_SOURCE_DIR}/bindings/c/test/apitester/tests
|
${CMAKE_SOURCE_DIR}/bindings/c/test/apitester/tests
|
||||||
)
|
)
|
||||||
|
|
||||||
if(NOT USE_SANITIZER)
|
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" AND NOT USE_SANITIZER)
|
||||||
add_test(NAME fdb_c_upgrade_single_threaded
|
add_test(NAME fdb_c_upgrade_single_threaded
|
||||||
COMMAND ${CMAKE_SOURCE_DIR}/tests/TestRunner/upgrade_test.py
|
COMMAND ${CMAKE_SOURCE_DIR}/tests/TestRunner/upgrade_test.py
|
||||||
--build-dir ${CMAKE_BINARY_DIR}
|
--build-dir ${CMAKE_BINARY_DIR}
|
||||||
--disable-log-dump
|
--disable-log-dump
|
||||||
--test-file ${CMAKE_SOURCE_DIR}/bindings/c/test/apitester/tests/upgrade/MixedApiWorkloadSingleThr.toml
|
--test-file ${CMAKE_SOURCE_DIR}/bindings/c/test/apitester/tests/upgrade/MixedApiWorkloadSingleThr.toml
|
||||||
--upgrade-path "6.3.23" "7.0.0" "6.3.23"
|
--upgrade-path "6.3.23" "7.0.0" "6.3.23"
|
||||||
--process-number 1
|
--process-number 1
|
||||||
)
|
)
|
||||||
|
|
||||||
add_test(NAME fdb_c_upgrade_multi_threaded
|
add_test(NAME fdb_c_upgrade_multi_threaded
|
||||||
COMMAND ${CMAKE_SOURCE_DIR}/tests/TestRunner/upgrade_test.py
|
COMMAND ${CMAKE_SOURCE_DIR}/tests/TestRunner/upgrade_test.py
|
||||||
--build-dir ${CMAKE_BINARY_DIR}
|
--build-dir ${CMAKE_BINARY_DIR}
|
||||||
--disable-log-dump
|
--disable-log-dump
|
||||||
--test-file ${CMAKE_SOURCE_DIR}/bindings/c/test/apitester/tests/upgrade/MixedApiWorkloadMultiThr.toml
|
--test-file ${CMAKE_SOURCE_DIR}/bindings/c/test/apitester/tests/upgrade/MixedApiWorkloadMultiThr.toml
|
||||||
--upgrade-path "6.3.23" "7.0.0" "6.3.23"
|
--upgrade-path "6.3.23" "7.0.0" "6.3.23"
|
||||||
--process-number 3
|
--process-number 3
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue