summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php4
1 files changed, 4 insertions, 0 deletions
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)) {