aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGilles Peskine <gilles.peskine@arm.com>2023-08-21 15:47:21 +0000
committerGitHub <noreply@github.com>2023-08-21 15:47:21 +0000
commit796bc2b8f925068a6fde149af859b75889010a06 (patch)
treeaf1f0ac563cdbc484014f358c90648db308fb575 /.travis.yml
parent0addbe6dc773813236fdb10c95adca5ce659f47c (diff)
parentf14a5c3fcb54ae2dae758c39ee3137eca19d88de (diff)
downloadmbedtls-796bc2b8f925068a6fde149af859b75889010a06.zip
mbedtls-796bc2b8f925068a6fde149af859b75889010a06.tar.gz
mbedtls-796bc2b8f925068a6fde149af859b75889010a06.tar.bz2
Merge pull request #7486 from AndrzejKurek/calloc-also-zeroizes
Document mbedtls_calloc zeroization
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 3a608f5..719654c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,6 +32,10 @@ jobs:
packages:
- clang-10
- gnutls-bin
+ env:
+ # Platform tests have an allocation that returns null
+ - ASAN_OPTIONS="allocator_may_return_null=1"
+ - MSAN_OPTIONS="allocator_may_return_null=1"
script:
# Do a manual build+test sequence rather than using all.sh,
# because there's no all.sh component that does what we want,
@@ -89,6 +93,10 @@ jobs:
apt:
packages:
- gcc
+ env:
+ # Platform tests have an allocation that returns null
+ - ASAN_OPTIONS="allocator_may_return_null=1"
+ - MSAN_OPTIONS="allocator_may_return_null=1"
script:
# Do a manual build+test sequence rather than using all.sh.
#
@@ -115,6 +123,10 @@ jobs:
packages:
- clang
- gnutls-bin
+ env:
+ # Platform tests have an allocation that returns null
+ - ASAN_OPTIONS="allocator_may_return_null=1"
+ - MSAN_OPTIONS="allocator_may_return_null=1"
script:
# Do a manual build+test sequence rather than using all.sh.
#