[A] Added tests to freebsd
This commit is contained in:
parent
0510aca314
commit
96efea9c0e
13
.cirrus.yml
13
.cirrus.yml
@ -3,7 +3,7 @@ freebsd_instance:
|
|||||||
|
|
||||||
main_task:
|
main_task:
|
||||||
script:
|
script:
|
||||||
- echo "Hello cirrus"
|
- uname -a
|
||||||
- ls
|
- ls
|
||||||
- yes | pkg install cmake
|
- yes | pkg install cmake
|
||||||
- cc --version
|
- cc --version
|
||||||
@ -22,3 +22,14 @@ main_task:
|
|||||||
- rm fort.o
|
- rm fort.o
|
||||||
- rm fort.cpp
|
- rm fort.cpp
|
||||||
- cd ..
|
- cd ..
|
||||||
|
|
||||||
|
# Perform out-of-source build(CMake backend generation, build, and test)
|
||||||
|
# Test build without optimizations and with asan
|
||||||
|
- mkdir -p build
|
||||||
|
- cd build
|
||||||
|
- cmake .. -DFORT_BUILD_TYPE=asan
|
||||||
|
- cmake --build . --target all
|
||||||
|
- ls
|
||||||
|
- ./libfort_example
|
||||||
|
- ./libfort_test_dev
|
||||||
|
- ./libfort_test
|
@ -2927,8 +2927,7 @@ static fort_status_t set_cell_property_impl(fort_cell_props_t *opt, uint32_t pro
|
|||||||
if (v == FT_TSTYLE_DEFAULT) {
|
if (v == FT_TSTYLE_DEFAULT) {
|
||||||
opt->cell_text_style = FT_TSTYLE_DEFAULT;
|
opt->cell_text_style = FT_TSTYLE_DEFAULT;
|
||||||
} else {
|
} else {
|
||||||
// opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
||||||
opt->cell_text_style |= v;
|
|
||||||
}
|
}
|
||||||
} else if (PROP_IS_SET(property, FT_CPROP_CONT_TEXT_STYLE)) {
|
} else if (PROP_IS_SET(property, FT_CPROP_CONT_TEXT_STYLE)) {
|
||||||
enum ft_text_style v = (enum ft_text_style)value;
|
enum ft_text_style v = (enum ft_text_style)value;
|
||||||
|
@ -471,8 +471,7 @@ static fort_status_t set_cell_property_impl(fort_cell_props_t *opt, uint32_t pro
|
|||||||
if (v == FT_TSTYLE_DEFAULT) {
|
if (v == FT_TSTYLE_DEFAULT) {
|
||||||
opt->cell_text_style = FT_TSTYLE_DEFAULT;
|
opt->cell_text_style = FT_TSTYLE_DEFAULT;
|
||||||
} else {
|
} else {
|
||||||
// opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
opt->cell_text_style = (enum ft_text_style)(opt->cell_text_style | v);
|
||||||
opt->cell_text_style |= v;
|
|
||||||
}
|
}
|
||||||
} else if (PROP_IS_SET(property, FT_CPROP_CONT_TEXT_STYLE)) {
|
} else if (PROP_IS_SET(property, FT_CPROP_CONT_TEXT_STYLE)) {
|
||||||
enum ft_text_style v = (enum ft_text_style)value;
|
enum ft_text_style v = (enum ft_text_style)value;
|
||||||
|
Loading…
Reference in New Issue
Block a user