mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-19 03:13:14 +00:00
* improvements for cross-platform compiling * moved tactility-core to libs/ * splitup improvements * remove git/gitmodules from freertos * better platformbetter platform checks * added build scripts * delete mbedtls * re-add mbedtls * fixes and improvements * added pc build * simplify build scripts * revert build scrpit * updated builds * fix for pc * fix for pc * fix for build
16 lines
583 B
Plaintext
16 lines
583 B
Plaintext
|
|
Time: get milliseconds
|
|
time_get_milliseconds:
|
|
|
|
Time: get seconds
|
|
time_get_seconds:
|
|
|
|
Check mbedtls_calloc overallocation
|
|
# This test case exercises an integer overflow in calloc. Under Asan, with
|
|
# a modern Clang, this triggers an ASan/MSan/TSan complaint. The complaint
|
|
# can be avoided with e.g. ASAN_OPTIONS=allocator_may_return_null=1,
|
|
# but this has to be set in the environment before the program starts,
|
|
# and could hide other errors.
|
|
depends_on:!MBEDTLS_TEST_HAVE_ASAN:!MBEDTLS_TEST_HAVE_MSAN:!MBEDTLS_TEST_HAVE_TSAN
|
|
check_mbedtls_calloc_overallocation:SIZE_MAX/2:SIZE_MAX/2
|