mirror of
https://github.com/eclipse-threadx/filex.git
synced 2026-09-14 04:05:59 +08:00
- New port: ports/win64/vs_2022/inc/fx_port.h
- Based on the Win32 port; updated ALIGN_TYPE to ULONG64 for 64-bit
pointers, added FX_REGRESSION_TEST hooks from the Linux port, and
bumped the port name string to Win64/Visual.
- New CMake infrastructure: ports/win64/vs_2022/CMakeLists.txt
- Exposes only the inc/ directory (port is header-only).
- Updated test/cmake/CMakeLists.txt
- Added MSVC guards: skip -m32 / GCC coverage flags; locate VS 2022
toolchain; build ThreadX from source alongside FileX via
THREADX_SOURCE_DIR.
- Updated test/cmake/regression/CMakeLists.txt
- Added MSVC-compatible compile options (/W3 /Zi instead of -Wall
-fprofile-arcs); added win64_compat include path for standalone +
MSVC builds; added per-test TIMEOUT overrides for the two inherently
long-running fault-tolerant tests on Windows.
- Updated test/cmake/samples/CMakeLists.txt
- Added MSVC-compatible flag handling.
- New PowerShell scripts: scripts/build_fx.ps1, scripts/test_fx.ps1,
scripts/fx_windows_common.ps1
- Support all 9 build configurations; -Clean, -Config, -Verbose flags;
modelled on the ThreadX Win64 build/test scripts.
- New Windows compatibility shims for standalone builds:
test/regression_test/win64_compat/pthread.h
test/regression_test/win64_compat/unistd.h
- Minimal pthreads (CreateThread / WaitForSingleObject / TerminateThread)
and usleep (Sleep) shims so standalone test files compile on MSVC.
- Fixed test/regression_test/fx_ram_driver_test.c and .h
- RAM driver: added bounds check so out-of-range sector READs use a
safe scratch buffer instead of segfaulting.
- MSVC: large test buffers (ram_disk_memory_large, large_data_buffer,
and standalone-mode ram_disk_memory / ram_disk_memory1) moved from
BSS to calloc() via a .CRT\ constructor. This avoids the MSVC
PE image 2 GB hard limit (LNK1248) and eliminates demand-zero page-
fault overhead that would otherwise slow the test suite.
- Bulk-fixed 93 fault-tolerant test files
- [FAULT_TOLERANT_SIZE] -> [FAULT_TOLERANT_SIZE > 0 ? FAULT_TOLERANT_SIZE : 1]
so that MSVC C2466 (zero-length array) is not triggered when
FX_ENABLE_FAULT_TOLERANT is not defined.
- Fixed filextestcontrol.c: standalone test runner thread exit
- The Win64 pthread shim makes pthread_exit() a no-op so that
test_control_thread_entry() proceeds to exit(failed_tests),
giving ctest the correct process exit code.
- Fixed common/src/fx_utility_logical_sector_write.c
- Added missing bounds guard to prevent sector-write past end of
RAM disk during fault-tolerant interrupt simulation tests.
All 9 build configurations pass 136/136 regression tests on Win64/VS 2022.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
171 lines
10 KiB
CMake
171 lines
10 KiB
CMake
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
|
|
cmake_policy(SET CMP0057 NEW)
|
|
|
|
project(regression_test LANGUAGES C)
|
|
|
|
set(SOURCE_DIR ${CMAKE_CURRENT_LIST_DIR}/../../regression_test)
|
|
|
|
set(regression_test_cases
|
|
${SOURCE_DIR}/filex_directory_attributes_read_set_test.c
|
|
${SOURCE_DIR}/filex_directory_create_delete_test.c
|
|
${SOURCE_DIR}/filex_directory_default_path_get_set_test.c
|
|
${SOURCE_DIR}/filex_directory_duplicate_entries_test.c
|
|
${SOURCE_DIR}/filex_directory_first_next_find_test.c
|
|
${SOURCE_DIR}/filex_directory_local_path_test.c
|
|
${SOURCE_DIR}/filex_directory_long_short_get_test.c
|
|
${SOURCE_DIR}/filex_directory_naming_test.c
|
|
${SOURCE_DIR}/filex_directory_rename_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_corrupted_log_file_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_delete_large_data_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_attributes_set_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_attributes_set_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_create_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_create_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_delete_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_delete_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_rename_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_directory_rename_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_enable_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_enable_1_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_enable_2_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_enable_3_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_enable_4_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_media_check_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_seek_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_random_seek_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_allocate_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_allocate_fat_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_allocate_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_allocate_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_allocate_undo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_attributes_set_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_attributes_set_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_best_allocate_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_best_allocate_fat_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_best_allocate_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_best_allocate_undo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_create_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_create_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_delete_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_delete_fat_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_delete_fat_multiple_sectors_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_delete_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_delete_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_delete_undo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_rename_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_rename_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_truncate_release_available_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_truncate_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_truncate_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_truncate_release_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_truncate_release_fat_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_truncate_release_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_truncate_release_undo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_available_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_data_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_fat_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_undo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_corruption_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_log_full_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_log_recover_directory_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_log_recover_fat_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_long_directory_create_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_long_directory_create_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_long_directory_rename_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_long_directory_rename_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_long_directory_rename_io_error_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_long_file_create_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_long_file_create_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_loop_write_data_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_media_full_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_write_large_data_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_write_large_data_fat_chain_cleanup_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_write_large_data_fat_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_write_large_data_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_write_large_data_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_write_large_data_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_write_large_data_undo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_recover_fail_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_directory_create_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_directory_create_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_directory_rename_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_directory_rename_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_file_create_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_file_create_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_file_rename_directory_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_unicode_file_rename_redo_log_interrupt_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_fat_crossover_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_write_fat_crossover_2_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_allocate_fat_crossover_test.c
|
|
${SOURCE_DIR}/filex_fault_tolerant_file_best_effort_allocate_fat_crossover_test.c
|
|
${SOURCE_DIR}/filex_file_allocate_truncate_test.c
|
|
${SOURCE_DIR}/filex_file_allocate_test.c
|
|
${SOURCE_DIR}/filex_file_attributes_read_set_test.c
|
|
${SOURCE_DIR}/filex_file_create_delete_test.c
|
|
${SOURCE_DIR}/filex_file_date_time_set_test.c
|
|
${SOURCE_DIR}/filex_file_naming_test.c
|
|
${SOURCE_DIR}/filex_file_read_write_test.c
|
|
${SOURCE_DIR}/filex_file_rename_test.c
|
|
${SOURCE_DIR}/filex_file_seek_test.c
|
|
${SOURCE_DIR}/filex_file_name_test.c
|
|
${SOURCE_DIR}/filex_media_abort_test.c
|
|
${SOURCE_DIR}/filex_media_cache_invalidate_test.c
|
|
${SOURCE_DIR}/filex_media_check_test.c
|
|
${SOURCE_DIR}/filex_media_flush_test.c
|
|
${SOURCE_DIR}/filex_media_format_open_close_test.c
|
|
${SOURCE_DIR}/filex_media_multiple_open_close_test.c
|
|
${SOURCE_DIR}/filex_media_read_write_sector_test.c
|
|
${SOURCE_DIR}/filex_media_volume_directory_entry_test.c
|
|
${SOURCE_DIR}/filex_media_volume_get_set_test.c
|
|
${SOURCE_DIR}/filex_media_hidden_sectors_test.c
|
|
${SOURCE_DIR}/filex_system_date_time_test.c
|
|
${SOURCE_DIR}/filex_unicode_directory_rename_test.c
|
|
${SOURCE_DIR}/filex_unicode_file_directory_rename_extra_test.c
|
|
${SOURCE_DIR}/filex_unicode_file_directory_rename_extra_2_test.c
|
|
${SOURCE_DIR}/filex_unicode_file_rename_test.c
|
|
${SOURCE_DIR}/filex_unicode_test.c
|
|
${SOURCE_DIR}/filex_unicode_2_test.c
|
|
${SOURCE_DIR}/filex_unicode_3_test.c
|
|
${SOURCE_DIR}/filex_unicode_4_test.c
|
|
${SOURCE_DIR}/filex_unicode_name_string_test.c
|
|
${SOURCE_DIR}/filex_unicode_directory_entry_test.c
|
|
${SOURCE_DIR}/filex_unicode_directory_entry_2_test.c
|
|
${SOURCE_DIR}/filex_unicode_directory_entry_change_test.c
|
|
${SOURCE_DIR}/filex_unicode_fat_entry_test.c
|
|
${SOURCE_DIR}/filex_unicode_fat_entry_1_test.c
|
|
${SOURCE_DIR}/filex_unicode_fat_entry_2_test.c
|
|
${SOURCE_DIR}/filex_unicode_fat_entry_3_test.c
|
|
${SOURCE_DIR}/filex_file_write_seek_test.c
|
|
${SOURCE_DIR}/filex_file_write_notify_test.c
|
|
${SOURCE_DIR}/filex_file_write_available_cluster_test.c
|
|
${SOURCE_DIR}/filex_utility_test.c
|
|
${SOURCE_DIR}/filex_utility_fat_flush_test.c)
|
|
|
|
add_library(test_utility ${SOURCE_DIR}/fx_ram_driver_test.c
|
|
${SOURCE_DIR}/filextestcontrol.c)
|
|
target_link_libraries(test_utility PUBLIC azrtos::filex)
|
|
target_compile_definitions(test_utility PUBLIC BATCH_TEST CTEST)
|
|
if(MSVC AND FX_STANDALONE_ENABLE)
|
|
target_include_directories(test_utility PUBLIC ${SOURCE_DIR}/win64_compat)
|
|
endif()
|
|
|
|
foreach(test_case ${regression_test_cases})
|
|
get_filename_component(test_name ${test_case} NAME_WE)
|
|
add_executable(${test_name} ${test_case})
|
|
target_link_libraries(${test_name} PRIVATE test_utility)
|
|
add_test(${CMAKE_BUILD_TYPE}::${test_name} ${test_name})
|
|
endforeach()
|
|
|
|
# These two tests write or corrupt large amounts of data on a 900 MB RAM disk and are
|
|
# inherently slow (≈95 s and ≈330 s on Windows). Override the default 60-second ctest
|
|
# timeout so that they are not mis-reported as failures.
|
|
if(MSVC)
|
|
set_tests_properties(
|
|
${CMAKE_BUILD_TYPE}::filex_fault_tolerant_file_corruption_test
|
|
${CMAKE_BUILD_TYPE}::filex_fault_tolerant_media_full_test
|
|
PROPERTIES TIMEOUT 600
|
|
)
|
|
endif()
|