mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Turn off Analyzer if using Travis -- it breaks all tests for some reason
This commit is contained in:
parent
69ecc99802
commit
db8ac9eead
2 changed files with 3 additions and 2 deletions
|
@ -38,4 +38,4 @@ before_script:
|
||||||
script:
|
script:
|
||||||
# Now build lsquic-client
|
# Now build lsquic-client
|
||||||
- make
|
- make
|
||||||
- ctest -VV
|
- make test
|
||||||
|
|
|
@ -41,7 +41,8 @@ IF(DEVEL_MODE EQUAL 1)
|
||||||
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -O0 -g3")
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -O0 -g3")
|
||||||
# -Werror is used to force us to fix warnings early.
|
# -Werror is used to force us to fix warnings early.
|
||||||
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Werror")
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -Werror")
|
||||||
IF(CMAKE_C_COMPILER MATCHES "clang")
|
IF(CMAKE_C_COMPILER MATCHES "clang" AND
|
||||||
|
NOT "$ENV{TRAVIS}" MATCHES "^true$")
|
||||||
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -fsanitize=address")
|
SET(MY_CMAKE_FLAGS "${MY_CMAKE_FLAGS} -fsanitize=address")
|
||||||
ENDIF()
|
ENDIF()
|
||||||
# Uncomment to enable fault injection testing via libfiu:
|
# Uncomment to enable fault injection testing via libfiu:
|
||||||
|
|
Loading…
Reference in a new issue