Skip to content

Commit acd699e

Browse files
committed
fix: resolve CI compilation errors in coverage and windows tests
- Fix duplicate import in test_system_fpm_example.f90 - Add explicit imports in test_unicode_detection.f90 for strict compilation - Reorder module imports in test_character_bitmap_rendering.f90 - Fixes coverage test compilation with -Werror=implicit-interface flag - Ensures all tests compile correctly on both Linux and Windows
1 parent 0199c79 commit acd699e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

test/test_character_bitmap_rendering.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ program test_character_bitmap_rendering
22
!! Unit test for verifying actual character bitmap rendering correctness
33
!! Tests that characters are rendered with expected pixel patterns
44
!! Backend-agnostic test that uses high-level rendering API
5-
use fortplot_raster, only: render_text_to_bitmap
65
use fortplot_text, only: init_text_system, cleanup_text_system, calculate_text_width, calculate_text_height
6+
use fortplot_raster, only: render_text_to_bitmap
77
implicit none
88

99
logical :: all_tests_passed

test/test_system_fpm_example.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
program test_system_fpm_example
2-
use fortplot_security, only: safe_check_program_available, safe_check_program_available
2+
use fortplot_security, only: safe_check_program_available
33
implicit none
44
integer :: exit_code
55
character(len=256) :: cwd

test/test_unicode_detection.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
program test_unicode_detection
2-
use fortplot_unicode
2+
use fortplot_unicode, only: is_unicode_char, check_utf8_sequence, utf8_char_length, &
3+
utf8_to_codepoint, is_greek_letter_codepoint, contains_unicode
34
implicit none
45

56
call test_is_unicode_character()

0 commit comments

Comments
 (0)