diff --git a/.cirrus.yml b/.cirrus.yml index 51e1c49..21d4d46 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -30,9 +30,10 @@ main_task: - cmake .. -DFORT_BUILD_TYPE=asan - cmake --build . --target all - ls - - ./libfort_example - - ./libfort_test_dev - - ./libfort_test + - ctest -VV + # - ./libfort_example + # - ./libfort_test_dev + # - ./libfort_test - cd .. - rm -r build/* @@ -42,9 +43,10 @@ main_task: - cmake .. -DFORT_BUILD_TYPE=ubsan - cmake --build . --target all - ls - - ./libfort_example - - ./libfort_test_dev - - ./libfort_test + - ctest -VV + # - ./libfort_example + # - ./libfort_test_dev + # - ./libfort_test - cd .. - rm -r build/* @@ -54,8 +56,9 @@ main_task: - cmake .. -DFORT_ENABLE_WCHAR=OFF - cmake --build . --target all - ls - - ./libfort_example - - ./libfort_test_dev - - ./libfort_test + - ctest -VV + # - ./libfort_example + # - ./libfort_test_dev + # - ./libfort_test - cd .. - rm -r build/* diff --git a/lib/fort.c b/lib/fort.c index d8fe61f..6da4613 100644 --- a/lib/fort.c +++ b/lib/fort.c @@ -1967,7 +1967,7 @@ int ft_add_separator(ft_table_t *table) return FT_SUCCESS; } -static const struct fort_border_style * built_in_styles[] = { +static const struct fort_border_style *built_in_styles[] = { &FORT_BASIC_STYLE, &FORT_BASIC2_STYLE, &FORT_SIMPLE_STYLE, diff --git a/src/fort_impl.c b/src/fort_impl.c index 0ae7856..1508edb 100644 --- a/src/fort_impl.c +++ b/src/fort_impl.c @@ -806,7 +806,7 @@ int ft_add_separator(ft_table_t *table) return FT_SUCCESS; } -static const struct fort_border_style * built_in_styles[] = { +static const struct fort_border_style *built_in_styles[] = { &FORT_BASIC_STYLE, &FORT_BASIC2_STYLE, &FORT_SIMPLE_STYLE,