mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 11:24:05 +00:00
Add MINGW64 to define. Try to fix tsan test path error to suppressions.txt.
This commit is contained in:
parent
9a65617a34
commit
6f455f29cc
|
@ -32,7 +32,7 @@ test-tsan:
|
||||||
variables:
|
variables:
|
||||||
CFLAGS: '-fsanitize=thread'
|
CFLAGS: '-fsanitize=thread'
|
||||||
# Temporarily suppress known errors or false positives.
|
# Temporarily suppress known errors or false positives.
|
||||||
TSAN_OPTIONS: 'suppressions=/builds/TIE/ultravideo/kvazaar/tests/tsan_suppressions.txt'
|
TSAN_OPTIONS: 'suppressions=/builds/cs/ultravideo/kvazaar/tests/tsan_suppressions.txt'
|
||||||
|
|
||||||
test-ubsan:
|
test-ubsan:
|
||||||
<<: *test-template
|
<<: *test-template
|
||||||
|
|
|
@ -268,7 +268,7 @@ done:
|
||||||
|
|
||||||
// This thread exit call causes problems with media auto-build suite
|
// This thread exit call causes problems with media auto-build suite
|
||||||
// The environment compiles with MINGW using a different pthreads lib
|
// The environment compiles with MINGW using a different pthreads lib
|
||||||
#ifndef __MINGW32__
|
#if !defined(__MINGW32__) || !defined(__MINGW64__)
|
||||||
pthread_exit(NULL);
|
pthread_exit(NULL);
|
||||||
#endif
|
#endif
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in a new issue