1
0
Fork 0

[A] Added wchar-off test to freebsd

This commit is contained in:
seleznevae 2019-01-13 11:30:54 +03:00
parent 6ae5cb0107
commit deb4382558
1 changed files with 12 additions and 1 deletions

View File

@ -36,7 +36,6 @@ main_task:
- cd ..
- rm -r build/*
# Test build without optimizations and with ubsan
- mkdir -p build
- cd build
@ -48,3 +47,15 @@ main_task:
- ./libfort_test
- cd ..
- rm -r build/*
# Test without WCHAR support
- mkdir -p build
- cd build
- cmake .. -DFORT_ENABLE_WCHAR=OFF
- cmake --build . --target all
- ls
- ./libfort_example
- ./libfort_test_dev
- ./libfort_test
- cd ..
- rm -r build/*