From b2700811f3fa701a14701fc1a9e629f468e7d8a1 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Thu, 15 Oct 2020 10:40:23 +0200 Subject: Skip arginfo test under msan Msan is missing interceptors for some functions that result in false positives. --- run-tests.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'run-tests.php') diff --git a/run-tests.php b/run-tests.php index 761ef949fe..011885c678 100755 --- a/run-tests.php +++ b/run-tests.php @@ -608,10 +608,14 @@ function main(): void $shuffle = true; break; case '--asan': + case '--msan': $environment['USE_ZEND_ALLOC'] = 0; $environment['USE_TRACKED_ALLOC'] = 1; $environment['SKIP_ASAN'] = 1; $environment['SKIP_PERF_SENSITIVE'] = 1; + if ($switch === '--msan') { + $environment['SKIP_MSAN'] = 1; + } $lsanSuppressions = __DIR__ . '/azure/lsan-suppressions.txt'; if (file_exists($lsanSuppressions)) { -- cgit v1.2.1