mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-12-17 19:04:05 +00:00
[CI] Add -g flag to asan and ubsan
This commit is contained in:
parent
25fb0dd3d9
commit
d91a2b005b
|
@ -20,7 +20,7 @@ test-kvazaar: &test-template
|
||||||
test-asan:
|
test-asan:
|
||||||
<<: *test-template
|
<<: *test-template
|
||||||
variables:
|
variables:
|
||||||
CFLAGS: '-fsanitize=address'
|
CFLAGS: '-fsanitize=address -g'
|
||||||
# LeakSanitizer doesn't work inside the container because it requires
|
# LeakSanitizer doesn't work inside the container because it requires
|
||||||
# ptrace so we disable it.
|
# ptrace so we disable it.
|
||||||
ASAN_OPTIONS: 'detect_leaks=0'
|
ASAN_OPTIONS: 'detect_leaks=0'
|
||||||
|
@ -38,7 +38,7 @@ test-asan:
|
||||||
test-ubsan:
|
test-ubsan:
|
||||||
<<: *test-template
|
<<: *test-template
|
||||||
variables:
|
variables:
|
||||||
CFLAGS: '-fsanitize=undefined -fno-sanitize-recover=all -fno-sanitize=alignment'
|
CFLAGS: '-fsanitize=undefined -fno-sanitize-recover=all -fno-sanitize=alignment -g'
|
||||||
|
|
||||||
test-valgrind:
|
test-valgrind:
|
||||||
<<: *test-template
|
<<: *test-template
|
||||||
|
|
Loading…
Reference in a new issue